Stringboot中@Autowired加了static就属性值就为null
//错误
@Autowired
private static DepartmentDao departmentDao;
@Autowired注入,将bean注入进来
@Autowired通过spring的依赖注入只能在对象层级上进行依赖注入,被static修饰变量,是不属于任何实例化的对象拥有,
所以使用@autowired标签进行注入,就不能有static来修饰;
详细解答:以及解决在@Autowired添加static属性
(13条消息) Spring不能直接@autowired注入Static变量问题和解决方案_覃会程的博客-CSDN博客_autowired static不起作用
简单来说就是:当类加载器加载静态变量时,Spring的上下文环境还没有被加载。
我现在就是直接把static删掉就好了
//正确
@Autowired private DepartmentDao departmentDao;