We have an application written in
j2ee framework which has a single
servlet which controls all the flow in the application.So here
we have a single url seen on the browser,And internally it redirects to classes according to action that's is coming in.Now we want to change this
project to spring application and turn this servlet into a good controller and attain a MVC format application.
The hurdle is we want our application to have static url after we turn it into spring application.So actually if it is
http://localhost:8080/TEST
we want to keep it same throughout the application flows.
Since this is a legacy application and has to support multi browser compatibility we cant use frames here.
I am new to spring so please excuse if some one feels the question as dumb.