Spring + Maven | 404错误:请求的资源不可用

时间:2017-03-11 23:26:13

标签: java spring eclipse maven http-status-code-404

使用Eclipse Neon,我遵循简单的Spring Hello World教程here,但我收到了404错误。这是一个Maven项目。

您可以在GitHub上看到我的代码。项目构建,服务器(Tomcat v7.0)启动就好了。但是当我转到http://localhost:8080/gs-rest-service/http://localhost:8080/gs-rest-service/greetinghttp://localhost:8080/greeting时,我收到404错误。

任何人都可以帮忙解释原因,以及如何解决错误?

1 个答案:

答案 0 :(得分:1)

您好这个项目(pom)已经包含内置的tomcat所以您不需要在单独的服务器上运行它。只需使用

构建

mvn clean install

java -jar target / gs-rest-service-0.1.0-SNAPSHOT.jar

现在检查终点它会起作用。