我有一个使用RequestMapping注释的spring MVC应用程序。
我的注释映射到几个页面,如:/ newStudent,/ saveStudent等。
当我运行我的应用程序时,我的网址是:
https://localhost:8001/MyWebApp/index.jsp
当我点击应在RequestMapping中导航到这些值的链接时,而不是URL成为: https://localhost:8001/MyWebApp/newStudent/ https://localhost:8001/MyWebApp/saveStudent,
它转到:
https://localhost:8001/newStudent/
https://localhost:8001/saveStudent/,
我的serverlet映射如下所示:
<servlet-mapping>
<servlet-name>MyWebApp</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
为什么要删除应用程序名称?我究竟做错了什么?