解决SpringBoot项目访问不了Controller的问题

问题描述:

解决SpringBoot项目访问不了Controller的问题
通过浏览器访问服务器显示404,This application has no explicit mapping for /error, so you are seeing this as a fallback.
解决SpringBoot项目访问不了Controller的问题_第1张图片


原因分析:

SpringBootApplication.class文件没有与controller包在同级目录下,SpringBootApplication.class文件中的@SpringBootApplication注解会扫描该类所在包下的所有文件,能够识别出Controller.如果放在别的包下就扫描不到Controller
解决SpringBoot项目访问不了Controller的问题_第2张图片


解决方案:

SpringBootApplication.class文件与controller包放到同级目录下即可
解决SpringBoot项目访问不了Controller的问题_第3张图片

你可能感兴趣的:(SpringBoot,spring,boot)