web.xml除去特定的前缀其他全部走struts过滤器?

发布于 2022-09-07 08:16:20 字数 2200 浏览 15 评论 0

在进行请求的时候除去remoting开头的其余全部由struts来进行处理请求,应该如何配置web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5"
         xmlns="http://java.sun.com/xml/ns/javaee"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <display-name>DJH</display-name>
    <!-- Spring 配置文件 -->
    <!-- 1.配置spring配置文件位置 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring-application-content.xml</param-value>
    </context-param>
    <!-- 2.Struts核心过滤器 -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <!--拦截所有api开头的请求至Struts2-->
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/api/*</url-pattern>
    </filter-mapping>
    <!-- 3.Spring核心监听器 -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> <!--添加监听器 -->
    </listener>
    <!--4.hessianServer-->
    <!--使用说明 拦截url为-->
    <servlet>
        <servlet-name>serviceHessian</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!--指定加载hessian服务端的文件 默认加载 servlet名称-servlet.xml-->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring-hessian-server.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <!--拦截所有的remoting请求到hessianServer-->
    <servlet-mapping>
        <servlet-name>serviceHessian</servlet-name>
        <url-pattern>/remoting/*</url-pattern>
    </servlet-mapping>
    <!-- end hessianServer-->

</web-app>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文