Spring MVC open index.jsp on “/”
问题 How can I open index.jsp using this url http://localhost:8080/myApp/ and how can I use an hyperlink like this <a href="/">HOME</a> and go to index.jsp ( http://localhost:8080/myApp/ )? Here's my web.xml: <display-name>myApp</display-name> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring/application-config.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>