Hello,
As in
struts we can display
jsp page without going to action class ,for example in struts I have
url
http://localhost:7001/testapplication/info.do As I click on this url the request goes to struts-config.xml
where it found <action path="/info" forward="/information.jsp"/> then it display information.jsp in response,
but in spring for each request it goes through with controller then it controller returns corresponding view. I have some simple information jsp , how can i avoid controller part.how i can display jsp directly ?
Please help me , i need it urgently.
Thanks in advance
-nuri