我不确定这是否可能,或者我做错了什么。
我有myWebApp项目。有
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<path>/myweb/test</path>
</configuration>
在pom.xml中
和控制器
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
//controller
}
我希望主页网址为http://localhost:8080/myweb/test
,但它会出现我的404错误。
那么,我可以设置为多个级别,还是我错过了什么?
谢谢,