2

我不确定这是否可能,或者我做错了什么。

我有 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
    }

我希望主页 URL 是http://localhost:8080/myweb/test,但它给出了我的 404 错误。

那么,我可以设置多个级别,还是我错过了什么?

谢谢,

4

0 回答 0