出现RequestMapping注解的Controller类可能是因为@SpringBootApplication注解中配置了scanBasePackages导致的请求一直返回404错误。
@SpringBootApplication注解是Spring Boot的核心注解之一,它用于启动Spring Boot应用程序。这个注解实际上是一个组合注解,它包含了@ComponentScan、@EnableAutoConfiguration和@SpringBootConfiguration这三个注解。
@ComponentScan注解用于指定自动扫描的基础包,它默认扫描当前包及其子包。当使用scanBasePackages属性指定包路径时,会覆盖默认的扫描路径。
在你的情况中,可能是因为scanBasePackages属性设置不正确或者没有将Controller类所在的包路径包括在内,导致Spring Boot无法扫描到这些Controller类,进而导致请求返回404错误。
解决这个问题的方法是,在@SpringBootApplication注解中正确配置scanBasePackages属性,确保包含了所有Controller类所在的包路径。另外,你还可以使用@ComponentScan注解直接指定需要扫描的包路径,而不使用scanBasePackages属性。
例如,如果你的Controller类位于com.example.controller包下,你可以将@SpringBootApplication注解修改为如下形式:
@SpringBootApplication(scanBasePackages = “com.example”)
或者使用@ComponentScan注解,并指定需要扫描的包路径:
@ComponentScan(basePackages = “com.example”)
这样配置后,Spring Boot应用程序就能正确扫描到这些Controller类,请求就不会再返回404错误了。
参考: https://blog.csdn.net/Hunter_Sense/article/details/118864548