Consider defining a bean of type ‘com........‘ in your configuration.报错解决办法

编译没有报错,运行 SpringBoot 启动类,报错:

Consider defining a bean of type ‘com........‘ in your configuration.报错解决办法_第1张图片

解决办法:

1.注解没有扫描到,SpringBoot 启动类可以更改成下面的注解代码

扫码test目录下所有的service,**代表占位符

@ComponentScan(basePackages = {"com.test.**.service"})

2.可能是编译问题,清理一下target

Consider defining a bean of type ‘com........‘ in your configuration.报错解决办法_第2张图片

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