struts+spring+hibernate三个框架的整合

准备三个框架结合的lib包

Spring3结合Struts2的步骤如下:

1:开启Struts2结合Spring3,在struts.xml中添加如下语句:

java代码:

 

2:在web.xml中添加listener,如下:

java代码:

 
     
org.springframework.web.context.ContextLoaderListener 
   

3:在web.xml中指定需要初始读取的spring配置文件,如下:

java代码:

 
  contextConfigLocation 
  /WEB-INF/applicationContext-*.xml,classpath*:applicationContext-*.xml 
 

5.当然别忘了加上Struts2自己的filter  

4:在struts.xml中Action配置的时候,如下:

java代码:

 
  /index.jsp 

5:在Spring中正常定义Bean就可以了,把Action定义成为Bean,如下:

java代码:

 
 
 

6:在Struts的Action中,就可以通过依赖注入的方式来注入需要使用的接口了。

总结

以上所述是小编给大家介绍的struts+spring+hibernate三个框架的整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

你可能感兴趣的:(struts+spring+hibernate三个框架的整合)