Hi I am designing a web application. the structure is like this.
request for product -> controller.jsp ( based on URL forward the request) -> products.jsp
Here request can come from any of the pages and products.jsp refer to different jsps for different product. In general, there will be so many product jsps and one controller.jsp for controlling the requests.
Now, the URL for home.jsp will be .. http://myweb.com/
From home if I want to go to Product1 the URL will be "http://myweb.com/controller.jsp?path=products/product1". Here everytime I need to show the controller.jsp on URL as it is the main controller for navigation.
Is there any way to go Product1.jsp via controller.jsp with URL something like, http://myweb.com/product1..
Please let me know with the steps, what should I do in order to make this happen.
REALLY REALLY APPRECIATE IN ADVANCE.