views:

8

answers:

1

All I need is a simple login page that will check against the username and password of a simple User entity class. Is that possible with JAVA EE6? In the tutorials they always store the users on the glassfish server.

A: 

Yes. What you need is form based authentication and JEE provides some support for it. More details at the below linklogin authentication

Pangea