I am having a hard time understanding JAAS. It all seems more complicated than it should be (especially the Sun tutorials). I need a simple tutorial or example on how to implement security (authentication + authorization) in java application based on Struts + Spring + Hibernate with custom user repository. Can be implemented using ACEGI.
|
feedback
|
|
Here are some of the links I used to help understand JAAS: http://www.owasp.org/index.php/JAAS_Tomcat_Login_Module http://www.javaworld.com/jw-09-2002/jw-0913-jaas.html Also have a look at the Apache tomcat realms configuration how-to: | |||||
feedback
|
|
Other users have provide some very useful links above so I am not going to bother with links. I have done a similar research in JAAS for web application and has ran into a "mind roadblock" until I finally realize JAAS is a framework tackling security at a different "layer" then web applications in the Java World. It is build to tackle security issues in J2SE not J2EE. JAAS is a security framework build for securing things at a much lower level then web-application. Some example of these things are code and resources available at the JVM level, hence all these ability to set policy files in the JVM level. However, since J2EE is build on top of J2SE, a few modules from JAAS was reuse in J2EE security such as the LoginModules and Callbacks. On the other hand, Acegi, or now aka Spring security, tackles a much higher "layer" in the securing web-application problem. It is build on top of J2EE security hence J2SE hence JAAS. Unless you are looking to secure resources in the J2SE level (classes, System resources), I don't see any real use of JAAS other than the using the common class and interfaces. Just focus on using Acegi or plain old J2EE security which solves a lot of common web application security problems. | |||
|
feedback
|
|
javax.security is imho overcomplicated API. As a result there are implementors of not only LoginModules, but the entire authentication and authorization api, that creates abstraction layer above, like Authentication & Authorization managers. For starters, it is good to print this into your memory. Secondly, imho the most simple, setup & go library for JAAS is Jboss PicketBox. It says how to do authentication and authorization via JBossAuthenticationManager and JBossAuthorizationManager ... Easily configurable via XML or Annotations. You can use it for managing both webapps and standalone applications. If you need the authorization part for managing repository access, in terms of ACL for resources, this is what you are looking for sure. Problem with the security is, that usually you need to customize it to your needs, so you may end up implementing : LoginModule - verifies userName + Password CallbackHandler is used like this CallbackHandler is passed to the underlying LoginModules so they may communicate and interact with users - prompting for a username and password via a graphical user interface, for example. So inside of the Handler you get the username and password from user and it is passed to the LoginModule. LoginContext - then you just call lc.login(); and authenticate the credentials. LoginContext is populated with the authenticated Subject. However Jboss picketbox gives you a really easy way to go, unless you need something specific. | ||||
|
feedback
|
|
I can't speak too much to JAAS itself, but this "suggested steps" guide on Spring Security and the reference manual are both pretty good resources on Spring Security - if your setup is anything close to simple, you don't really need to do much more than read these. | |||||
feedback
|
|
For a purely JAAS tutorial check out this. It's old but should help with the JAAS basics. | |||
|
feedback
|