首页 > 代码库 > @Autowired 注入为null

@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