在Servlet中可訪問Spring bean對象,但是不能直接以注入的方式引用


在Servlet中使用注解的方式引用Spring bean對象,會報空指針,因此可以在init()方法中通過WebApplicationContextUtils.getWebApplicationContext(servletContext)獲取Spring,

代碼如下:

package zttc.itat.user.servlet;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import org.apache.log4j.Logger;
import org.jbpm.api.RepositoryService;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

public class InitJbpmProcessServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;

    //@Autowired
    //RepositoryService repositoryService;
    
    public InitJbpmProcessServlet() {
        super();
    }

    public void init() throws ServletException {
        Logger logger = Logger.getLogger(this.getClass());
        try {
            ServletContext servletContext = this.getServletContext();  
            WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);  
            RepositoryService repositoryService = (RepositoryService) ctx.getBean("repositoryService");  
            
            //流程部署
            repositoryService.createDeployment().addResourceFromClasspath("leave.jpdl.xml").deploy();
            logger.info("---流程加載結束---");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM