I will use Spring security with LDAP authentication for my web app. But, for a user I would have to save in my MySQL DB some other info besided username, password and e-mail. How could I implement this?
I found a question here on the same subject, but I'm still not sure how to model the User table. Shall I save my normal User info + LDAP username?
Also, not sure how to implement the creation of a new user for his first login? For each login: Search in the LDAP if there is such a username and if yes and we don't have such a username in the User table, create a new one?
I'm a Spring Security newbie, bear with me :)