1.问题描述
使用@autuwired注解的时候得到的实体为null
2.问题分析:
(1)在应用的Filter或Listener中使用了@Autowired ,
原因:因为Filter和Listener加载顺序优先于spring容器初始化实例,所以使用@Autowired肯定为null了~~
解决:用ApplicationContext根据bean名称(注意名称为实现类而不是接口)去获取bean,随便写个工具类,然后调用
SpringContextUtil.getBean("beanname")注意beanname为类名的首字母小写
package com.jeedan.rest.entity;
/**
* Created by admin on 2021/3/10.
*/
import org.apache.log4j.Logger;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
/**
* spring上下文配置
* @author Mingchenchen
*
*/
@Component
public class SpringContextUtil implements Applica