ssh 整合之 struts1.x 和 spring2.5的整合


1.添加struts2支持。

在没添加hibernate支持之前先用自己的dao代替。


在Struts-config。xml中配置。


在没添加spring之前先将strut调出来。这个就不用多说了把。

2.添加spring支持。这里用spring2.5.

a.先添加jar包支持,struts 和 spring整合用到的是spring2.5 web library

b.在web.xml中添加插件plugin 或者 listener 来支持spring2.5.


c.把struts-config.xml中action节点中type属性改成org.springframework.web.struts.DelegatingActionProxy,或者加一个controller

d.在applicationContext.xml中加入要注入的对象。

到这里struts和spring的整合就完成了。

你可能感兴趣的:(struts1)