I’m currently working on a project where the front-end has to be a mobile application or a website.I want the back-end to be in java.I want to use rest as communication between the front-end and back-end. My question is : Is there a java web framework that has some kind of user management (with maybe webservices to login and signup users). For example so that the login details can be send from the front-end to webservice and then would see if it’s correct etc..
Share
I would suggest using Grails which has a rich catalog of plugins, including the spring security plugin which should do as you require without having to write much code.
If you must use Java only, then Spring MVC with the Spring Security is a good option.