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,所以你改一下依赖就好了,两个记得要配对。

参考技术B 把RequestMapping中的value改成path试试 还有官方里的做法 好像没有看到@SpringBootApplication和@RestController好像没有混用的情况,可以试试单独写个Controller试试 因为如果控制器注册成功 启动的时候控制台会有提示在某某路径上已经注册控制器了,你这个应该是没检查到控制器追问

在另外一台电脑启动就是正常的。一模一样的项目

参考技术C Application类只会扫描同一包下的Java文件

以上是关于springboot启动tomcat成功,但是无法访问 报404错误的主要内容,如果未能解决你的问题,请参考以下文章

eclipse创建spring boot项目,tomcat启动成功,但http://localhost:8080无法访问报错404解决方案

vue2启动成功了,但是无法访问

eclipse中tomcat无法加载spring boot

SpringBoot项目启动成功,访问路径提示404

多个Spring Boot项目部署在一个Tomcat容器无法启动

springboot打包成war,部署到tomcat无法访问的问题