Servlet中调用ssm的service层的方法

重写inti方法
public void init(ServletConfig config) throws ServletException {
// Put your code here
SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, config.getServletContext());
}

在用spring管理service的系统中需要
@Autowired
private BusinessOrderService businessorderService ;
添加注释。这样才能够正常的调用service层。

你可能感兴趣的:(JAVAWEB)