spring中使用@Autowired注解无法注入的情况及解决

网友投稿 1322 2022-12-05

spring中使用@Autowired注解无法注入的情况及解决

spring中使用@Autowired注解无法注入的情况及解决

目录spring @Autowired注解无法注入问题简述原因:(此处只说第二种)解决方案@Autowired注解注入失败,提示could not autowire

spring @Autowired注解无法注入

问题简述

在使用spring框架的过程中,常会遇到这种两情况:

1、在扫描的包以外使用需要使用mapper

2、同目录下两个controller或者两个service,在使用@Autowired注解注入mapper或者service时,其中一个可以注入,另一个却为空。

原因:(此处只说第二种)

楼主在经过调试后发现,在框架启动的过程中,此注解其实是注入过的,并非没有注入,只是在其后某处抹除了,至于原因,原谅楼主能力有限还未弄清楚,欢迎大家指正交流。

解决方案

这里楼主给出一种解决方案,实在无法注入的情况下,我们可以采用工具类的方法来注入:

@Component //当前类注解为spring组件

public class AbnormalRateUtil {

// 定义一个该类的静态变量

private static AbnormalRateUtil abnormalRateUtil;

//注入所需mapper

@Autowired

private InterFaceInfoMapper interFaceInfoMapper;

@PostConstruct //此注解的方法在bean加载前执行

private void init() {

abnormalRateUtil = this;

abnormalRateUtil.interFaceInfoMapper=this.interFaceInfoMapper;

//初始化时将静态化的interFaceInfoMapper进行了实例

}

//静态get方法

public static AbnormalRateUtil getAbnormalRateUtil() {

return abnormalRateUtil;

}

//静态get方法

public static InterFaceInfoMapper getInterFaceInfoMapper() {

return abnormalRateUtil.interFaceInfoMapper;

}

}

调用方式

在使用时可直接通过此工具类进行调用,如下:

List ruleList=AbnormalRateUtil.getInterFaceInfoMapper().findRuleById(id);

@Autowired注解注入失败,提示could not autowire

controller层无法调用接口层提示could not autowire的解决办法

主要原因是因为我们的spring检验级别的问题,我们可以通过降低检验的安全级别就可以解决这一问题。

File —> Settings—>Editor—>Inspections—>Spring————》将最右边的Serverity改为Warning

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:关于mybatis if else if 条件判断SQL片段表达式取值和拼接问题
下一篇:如何使用MyBatis Plus实现数据库curd操作
相关文章

 发表评论

暂时没有评论,来抢沙发吧~