2007年1月16日星期二

2007-1-15 星期一

今天练习了dwr与struts和spring集成,其中与struts集成有点小错误还没查出来,在网上找资料也没有解决。Spring集成倒是挺爽的,顺便回顾了spring的设置,如果spring和strtus集成,首先无论哪种方式都需要在struts-config.xml中以插件方式引入spring的一个加载类ContextLoaderPlugin

<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">

   <set-property property="contextConfigLocation"  value="/WEB-INF/applicationContext.xml" />

</plug-in>

可以用spring的一个接口DelegatingRequestProcessor替换org.apache.struts.action.RequestProcessor类,在web.xml中设置.

 还可以将struts的Action类交给spring的代理类来处理。

还有就是如果只是简单web应用,不用struts,那么在web.xml配置文件中配置一个spring监听器或者servlet,例如

<context-param>

    <param-name>contextConfigLocation</param-name>

    <param-value>/WEB-INF/classes/applicationContext.xml</param-value>

  </context-param>

 

  <listener>

   <listener-class>org.springframework.web.context.ContextLoaderListener

</listener-class>

  </listener>

这样在用到spring Ioc中的对象时就用WebApplicationContextUtils来加载。

没有评论:

发表评论