springboot中autowird注解得到的实体为null

在Spring Boot应用中遇到使用@Autowired注解后实体为null的问题。可能的原因包括:Filter或Listener加载早于spring容器初始化,此时需要通过ApplicationContext获取bean;代码低级错误,如缺少@Service注解;Spring注解未被扫描到,需检查@ComponentScan配置的扫描包路径。
摘要由CSDN通过智能技术生成

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值