Front End Frameworks for RESTful backend

frontendsessionsession-state

I am developing a RESTful backend using Spring framework. All the services are accessible through HTTP request methods (GET, POST, PUT, DELETE).

Could you please tell me what can the best combination of frameworks for front end?

Is it best to use SpringMVC or some other framework like Backbone is good enough?

If I am using SpringMVC for REST backend and also SpringMVC for front end then won't it be extra work doing same things again first for backend then for front end?

And most important I am confused about how can do the session management using front end?

Any help will be appreciated!

Best Answer

If you are looking into to make a SPA (Single Page App) make sure that you take a look at AmpersandJS -> http://ampersandjs.com/

Related Topic