首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

cxf、struts、spring中web.xml过滤url有关问题解决方案

2012-09-06 
cxf、struts、spring中web.xml过滤url问题解决方案最近项目遇到webService配置cxf过滤器时与struts冲突问题,

cxf、struts、spring中web.xml过滤url问题解决方案
最近项目遇到webService配置cxf过滤器时与struts冲突问题,原因是web.xml的过滤地址匹配问题,看了很多网上能找到的解决方案,在这里总结一下:
cxf在spring的配置不变,


web.xml配置:
cxf在web.xml配置不变
<filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter><filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>

struts的配置2处都不变

热点排行