springboot启动后访问不到controller

Posted 呼丿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot启动后访问不到controller相关的知识,希望对你有一定的参考价值。

springboot启动后访问有几个原因导致:

1.Application.java文件不在父目录,当启动springboot时@SpringBootApplication注解会去自动扫描当前目录和其子目录,如果controller层不在子目录则扫描不到。所以将其配置到子目录中。

2.在application.properties中配置   这里配置jsp的跳转页面

spring.mvc.view.prefix: /WEB-INF/jsp/
spring.mvc.view.suffix: .jsp

3.controller层中方法的注解应该是@controller  而不是 @RestController

@RestController用于ajax提交后返回字符串

 

以上是关于springboot启动后访问不到controller的主要内容,如果未能解决你的问题,请参考以下文章

springboot启动后controller访问404

一天一坑系列无法访问Controller:SpringBoot项目启动后,请求无法进入控制器Controller中(可以进入服务,但是无法访问控制器)

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

springboot能扫描到controller,页面访问不到

SpringBoot找不到html资源的原因

springboot templates目录下的页面文件访问不到 static 目录下的 jq 文件