Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question
Could you give me an explanation why the question was closed? Thank you – AndaP Oct 5 '12 at 13:11

closed as off topic by Terry Gardner, M42, Toon Krijthe, Kris, Stefan Steinegger Oct 5 '12 at 11:19

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

assuming you have successfully configured LDAP authentication.

you can write login success handler and get LdapUserDetailsImpl or Person or InetOrgPerson. as below

final Object principal = SecurityContextHolder.getContext().getAuthentication().getPrincipal();
if(principal instanceof LdapUserDetailsImpl) {

}
if(principal instanceof Person) {

}
if(principal instanceof InetOrgPerson) {

}

Please comment if you need more psudo code

share|improve this answer
Thanks for you response. My question was also about how to link the user from LDAP to the user in my database; – AndaP Oct 4 '12 at 13:56
to create login on mysql db for first time login, i meant to use login success handler. on success full login in handler check weather user exist in mysql if not then create new. to get details about user you can use principal from security context holder. – Jigar Parekh Oct 4 '12 at 14:19

Not the answer you're looking for? Browse other questions tagged or ask your own question.