I'm developing a Java EE application (JSF2 + richfaces+ Facelets + Tomcat). What's the best way to perform authentication when using JSF? Or should I make my own ?
|
|
People usually pick between ( in no specific order) : JAAS ( wich is Java/Java EE default security framework ) I never used Spring Security but the documentation is huge, i gave up trying that once because of time constraint. JAAS have the advantages of being simple and work out of the box with Tomcat. I've seen custom security built on top of JAAS too. What you really have to do is figure out what you will especifically need in your application and check wich frameworks suits your needs better. Without knowing your business needs, if you only need Authentication (User login) i would say JAAS is the most simple way to go as is it not application intrusive and you wont need to add Spring dependencies if you are not already using it. |
||||
|
|
Go for Spring Security Here is how to integrate it with JSF Edit: http://ocpsoft.com/java/acegi-spring-security-jsf-login-page/ |
|||||||||||
|
|
|
I think that Leonardo answered it correctly, but you could also consider Central Authentication Service(CAS) for enterprise wide security. It is a little more complex to configure, but the benefits are tremendous. It also supports an enormous number of out of the box authentication mechanisms from LDAP to NTLM. CAS also provides extension for custom authentication. If you choose to use Java EE containers, and wish to use form based authentication, I have published a couple of examples for use with JSF 1.2 and 2.0 and j_security_check
In addition, the Servlet 3.0 API provides login and authentication based on the container via the HttpServletRequest API. |
|||
|
|
|
JBoss Seam integrates EJB 3, Facelets, JSF, and hibernate really nicely. Also provides validation of data and some security stuff too. If you use it for all its features, it is really sweet. If you try to pick and choose only certain things out of it, then it is still cool, but you have a few work arounds. But I've been impressed with what I've seen of Seam so far. |
|||
|
|
|
Apart from the mentioned frameworks there's also Seam Security which integrates nicely with CDI through an Extension. |
|||
|
|
|
links for integrate spring security this link is provide code for how to integrate spring with jsf1.2. |
|||
|
|
|
You can try Apache Shiro, which gives authentication, authorization and many other. |
||||
|
|