Single Sign-On Spring Application

I am working on a Tomcat web application on a Linux server and all clients are under a Windows domain. I need to get a user account from a request in order to assign it the correct role in my application. So, to summarize, I just need to get a user account because authentication is not required.

What could be a simpler basis or solution for this? Jaas maybe a solution?

could you help me?

thanks,
Andrea

+8
java spring spring-security
source share
2 answers

Have you checked Spring-Security?

http://static.springsource.org/spring-security/site/

Spring Security supports single sign-on options using Kerberos, JNDI / LDAP, Active Directory, OAuth, OpenID, etc.

Single Sign-On Integration Using Spring Security

+8
source share

Try the Apache Shiro project , a former JSecurity.

+2
source share

All Articles