Loading...

java .net

2007-1-15 星期一

今天练习了dwrstrutsspring集成,其中与struts集成有点小错误还没查出来,在网上找资料也没有解决。Spring集成倒是挺爽的,顺便回顾了spring的设置,如果springstrtus集成,首先无论哪种方式都需要在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中设置.

 还可以将strutsAction类交给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来加载。

posted on 2008-08-26 22:06 阅读(84) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航:
 

公告

希望有一天

我能用鼠标双击我的钱包

然后选中一张100元

按住“ctrl+c”

接着不停的“ctrl+v”

嘻嘻~~~笑醒~~~



导航

<2008年8月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

统计

常用链接

留言簿(6)

随笔分类(102)

随笔档案(398)

文章分类

文章档案(10)

有趣网络

搜索

积分与排名

最新评论

阅读排行榜

评论排行榜