Spring通过上下文获取bean

  • 问题描述:

 某处调用get方法,却报空指针异常。经查,是dao对象为null。再查,是service对象为newInstance,并没有注入dao对象。因此修改语句,从spring中获取service对象。

  • 修改过程:

已有参数:Class service

最终目标:T sv

1. sv由spring上下文context获取

T sv = context.getBean(service);

2. ApplicationContext context由WebApplicationContextUtils获取

ApplicationContext context = WebApplicationContextUtils.getRequiredWebApplicationContext(sc);

此处说明:不可使用FileSystemXmlApplicationContext等对象初始化,需要获取的是目前使用中的context

3. ServletContext sc由ContextLoader获取

ServletContext servletContext = ContextLoader.getCurrentWebApplicationContext().getServletContext();

此处说明:如有request参数,也可使用request.getServletContext();获取

4. 最后

看上去可以直接从ContextLoader获取啊!不需要从ServletContext那边绕了!

所以就一行代码的事,我搞那么复杂干啥,真实睿智了

 

  • 最终代码:
    ApplicationContext context = ContextLoader.getCurrentWebApplicationContext();
    T sv = context.getBean(service);

     

你可能感兴趣的:(今天get到的小姿势,java)