@Autowired 注入为null

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@Autowired 注入为null相关的知识,希望对你有一定的参考价值。

    早上写代码的时候遇到@Autowired 注入为空的情况,一开始以为我在方法中存在空的变量导致报空指针异常。后来经过调试发现@Autowired没有进行注入导致变量为空,代码如下:

public class TeamEmergency  implements Emergency{


@Autowired 

private TeamEmergency teamEmergency;


}

后来在网上搜索后发现,要能自动注入需要此类在Spring容器里面,而我在调用该类的时候使用new 一个空间,这样导致会将该类移除出Spring 容器中,导致无法注入。


解决办法:1、在spring配置类中加入

<context:component-scan base-package="xxx.xxxx.xxx" />或者直接在配置中声明你当前的类让它在系统初始化时就存在于Spring 容器中。

2、利用Spring 容器中的类比如@Controller,@Service,@component等中声明需要注入的变量,再将该变量传入相应类中。


 

本文出自 “13085720” 博客,请务必保留此出处http://13095720.blog.51cto.com/13085720/1949328

以上是关于@Autowired 注入为null的主要内容,如果未能解决你的问题,请参考以下文章

spring autowired 自动注入问题

Java 各级注解及@Autowired注入为null解决办法

spring autowired怎么按照name注入

java-普通类文件@Autowired自动注入为null

@Autowired注入为null问题分析

springboot中如果使用了@Autowired注入了bean,则这个类也要为spring bean,new出来注入的bean为null