views:

47

answers:

2

Can someone point me in the direction of a good Java library to use to handle basic user login/authentication.

I am looking for a competent I can integrate into a custom app to handle simple user/name password authentication and send account validation/password reset emails.

A: 

Filters would work: http://java.sun.com/products/servlet/Filters.html

AEIOU
+1  A: 

Maybe you could use the JAAS (Java Authentication and Authorization Service). Look at the user guide and to get an overview of it look at the tutorials and simple programs of this guide.

Pedro Ghilardi