在servlet中自动装配

时间:2012-08-07 10:11:53

标签: spring java-ee servlets dependency-injection autowired

我想在servlet中使用spring autowiring,所以这是我的代码:

@Configurable
public class ImageServlet extends HttpServlet {

   @Autowired
   private SystemPropertyDao systemPropertyDao;

   @Override
   public void init() throws ServletException {


   String imagePath = systemPropertyDao.findByID(StaticParam.CONTENT_FOLDER);

}

SystemPropertyDao注明@Repository

和我的 applicationContext.xml

<context:component-scan base-package="com.basepackage" />
<mvc:annotation-driven />
<context:annotation-config />
<context:spring-configured/>

的web.xml

  <servlet>
    <servlet-name>imageServlet</servlet-name>
    <servlet-class>com.xeno.basepackage.ImageServlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>imageServlet</servlet-name>
    <url-pattern>/myimages/*</url-pattern>
  </servlet-mapping>

有时自动装配有效,有时它不起作用(对spring bean systemPropertyDao的引用为null),有人可以告诉我,如果我错过了什么吗?

2 个答案:

答案 0 :(得分:70)

我按照以下链接中的解决方案,它工作正常: Access Spring beans from a servlet in JBoss

public class MyServlet extends HttpServlet {

  @Autowired
  private MyService myService;

  public void init(ServletConfig config) {
    super.init(config);
    SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this,
      config.getServletContext());
  }
}

答案 1 :(得分:27)

从servlet中删除@Configurable注释并添加:

SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext (this);

在init()方法的第一行。