Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building a new web app from scratch for a client.

The tools are JSF2, PrimeFaces, Spring3, GlassFish3, Hibernate.

I have a basic web app working fine. Now I have to put authentication in.

My first thought was to hack together a login form that sets a session variable and have a phase listener check for the session variable and redirect to "logged out" when the variable is invalid or too old. But that sounds like a total hack.

I've googled, but I don't really know where to start. What's the REAL way of doing authentication in my web app on my platform?

Can anyone help, or point me to a tutorial, or the relevant documentation?

Any help is greatly appreciated,

rh

share|improve this question

1 Answer

The phaselistener you thought about is one of the solution in JSF. Another solution is Spring security. If you are not thinking about any of these, you can try Servlet filter

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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