Spring @Autowired 调用别的包下的Bean 解决方法

需要加入注解@ComponentScan(basePackages="bean所在的包名")

example:

 

@SpringBootApplication
@ComponentScan(basePackages="com.,abc.")
public class TechproofApplication {
}

你可能感兴趣的:(Spring @Autowired 调用别的包下的Bean 解决方法)