欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

引入其他公共模块无法注入Bean

程序员文章站 2024-03-26 12:45:53
...

在启动类添加

@ComponentScan({"com.xx.base.*","com.xx.xxx.*"})

容易忘记

 

已扫描工具类中使用Spring的Bean报null

使用

public static Demo demo;
@PostConstruct
public void init(){
demo=this;
}

 

相关标签: Spring