STS - Spring Boot应用程序 - 请求的资源不可用

时间:2016-08-19 18:31:36

标签: java eclipse spring tomcat spring-boot

我从GIT存储库导入了一个项目,当尝试在Tomcat 8上启动时,我收到以下错误:

请求的资源不可用。

推出的网址为http://localhost:8080/[project_name]/

我尝试将各种html文件(即home.html)附加到网址无效。有人可以帮我诊断一下这个问题吗?

谢谢!

1 个答案:

答案 0 :(得分:3)

没有任何其他配置,Spring Boot应用程序将在http://localhost:8080启动。

如果要添加上下文路径,请将以下属性添加到application.properties文件中:

server.context-path=my-project-name

然后它将在localhost:8080/my-project-name启动。