here is the url-pattern in web.xml
Here is my controller
while accessing the url with
http://localhost:8087/requestMapping/a.km , it is works, calls the handleKm() method.
but with
http://localhost:8087/requestMapping/a.jsp , it should call handleJsp().but it does not work. result : HTTP Status 404 - /requestMappingExperiment/a.jsp.
why ??
If I chane the url-pattern from "/" to "/*" , although both method are called , but dont get to the appropriate pages.
May be the "org.springframework.web.servlet.view.InternalResourceViewResolver" is not working .
please help. I m new to SprimgMVC.
Thanks