解决非controller使用@Autowired注解注入报错为java.lang.NullPointerException问题

Posted 屠城校尉杜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决非controller使用@Autowired注解注入报错为java.lang.NullPointerException问题相关的知识,希望对你有一定的参考价值。

        在SpringMVC框架中,我们经常要使用@Autowired注解注入Service或者Mapper接口,我们也知道,在controller层中注入service接口,在service层中注入其它的service接口或者mapper接口都是可以的,但是如果我们要在我们自己封装的Utils工具类中或者非controller普通类中使用@Autowired注解注入Service或者Mapper接口,直接注入是不可能的,因为Utils使用了静态的方法,我们是无法直接使用非静态接口的,当我们遇到这样的问题,我们就要想办法解决了。

        我们有两种方法解决这个问题,第一种是注解方式,第二种是xml配置方式,下面是我们在utils中使用@Autowired注解的方法:

@Component 
public class TestUtils {
    @Autowired
    private ItemService itemService;
     
    @Autowired
    private ItemMapper itemMapper;
     
    public static TestUtils testUtils;
     
    @PostConstruct  //用于在依赖关系注入完成之后需要执行的方法上,以执行任何初始化
    public void init() {    
        testUtils = this;
    } 
     
    //utils工具类中使用service和mapper接口的方法例子,用"testUtils.xxx.方法" 就可以了      
    public static void test(Item record){
        testUtils.itemMapper.insert(record);
        testUtils.itemService.queryAll();
    }
}

第二种方法就是xml配置的方式,也是很简单的,我们可以把init()方法上的@PostConstruct注解去掉,在spring-comtext.xml中配置以下bean就好了,里面什么内容都不用写,是不是很简单?

<bean id="testUtils" class="这里写utils类的包全路径名" init-method="init"></bean>

 

以上是关于解决非controller使用@Autowired注解注入报错为java.lang.NullPointerException问题的主要内容,如果未能解决你的问题,请参考以下文章

在 Spring 中使用 @Autowired 注解时出现以下错误应该如何解决?

@Autowired注解与@Qualifier注解搭配使用----解决多实现选择注入问题

Servlet通过 @Autowired注入service后事务失效,但是controller其它注入service事务正常,求指正

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

项目启动报错怎么办?看看你Spring自动注入用对了嘛?@Autowired XxxService注入问题解决

Spring注解 @Component@Repository@Service@Controller @Resource@Autowired@Qualifier 解析