I already have an application implemented in Spring MVC 3.0. Now i want to convert this application into a restful application in such a way that bussiness logic remains in one application and web layer remains in another application.
Now to achieve this using Rest my web layer will act as a rest client which will access the services exposed by the business logic implementation related application
The point where i am confused is how should i implement login for this.
Should i send the login credentials from the web application to the service application in a rest post request and then maintain the id that would act as a jsessionid authorizing my further requests
Or should i authenticate and authorize every request
Or is there any design pattern already proposed by Spring for achieving this kind of requirement.
Can anyone having knowledge about this help me.