解决非controller使用@Autowired注解注入为null问题

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

/**
*增加@Component注解
*/
@Component
public class TestUtils {
    @Autowired
    private ItemService itemService;
 
    @Autowired
    private ItemMapper itemMapper;
 	/**
 	*
 	*注意这个为 public 不然没有权限
 	*/
    public static TestUtils testUtils;
 /**
 	*
 	*
 	*关于@PostConstruct:被@PostConstruct修饰的方法会在服务器	加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。
 	*/
    @PostConstruct
    public void init() {
        testUtils = this;
    }
}

//utils工具类中使用service和mapper接口的方法例子,用’testUtils.xxx.方法’ 就可以了

public static void test(Item record){
    testUtils.itemMapper.insert(record);
    testUtils.itemService.queryAll();
}

我们在init方法中使用以下注解就可以了,时间上这个init()的方法是可以自己随便定义的,注意:inti()方法里面不用写任何东西,跟我这样的就绝对ok了,不用看网上其他人瞎掰!
来源:http://www.tpyyes.com/a/javaweb/2016/1124/30.html
如果以上不能解决,只能直接用 dao层:
ApplicationContext context = new ClassPathXmlApplicationContext(‘classpath:spring/applicationContext-*.xml’);
FcglEsHouseMapper sfMapper = context.getBean(FcglEsHouseMapper.class);

然后直接调mybatis接口,不推荐此种,违背springmvc

非原创,资料来源http://blog.sina.cn/dpool/blog/s/blog_142a81ff10102x2g1.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值