springboot启动tomcat成功,但是无法访问 报404错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot启动tomcat成功,但是无法访问 报404错误相关的知识,希望对你有一定的参考价值。
在另外一台电脑上面,运行该项目启动就是正常的
老哥我也是这样毕设就是做这个折腾了一天原因是 依赖的问题<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version></parent><dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency></dependencies>
这个parent 和下面那个web的约束要匹配我之前分开来取的,然后就是tomcat启动访问404
所以你改一下依赖就好了,两个记得要配对 参考技术A
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version></parent><dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency></dependencies>
这个parent 和下面那个web的约束要匹配我之前分开来取的,然后就是tomcat启动访问404,所以你改一下依赖就好了,两个记得要配对。
在另外一台电脑启动就是正常的。一模一样的项目
参考技术C Application类只会扫描同一包下的Java文件以上是关于springboot启动tomcat成功,但是无法访问 报404错误的主要内容,如果未能解决你的问题,请参考以下文章
eclipse创建spring boot项目,tomcat启动成功,但http://localhost:8080无法访问报错404解决方案