I am getting an 404 error message on localhost while calling for jsp file created in spring mvc project
I have created dynamic web project in eclipse and added spring jars in it. created controller and calling jsp file through it but getting 404 error msg. Server u
web.xml:
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> FirstMVCProject
<servlet>
<servlet-name>spring-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>spring-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>