2

我正在使用 strust2 进行 Web 应用程序开发。我的 struts.xml 文件将如下所示:

<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <package name="default" extends="struts-default" namespace ="/">
        <action name="signup">
            <result>/check.jsp</result>
        </action>
    </package>
</struts>

我的 web.xml 文件将类似于:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>sample</display-name>  
  <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>

  <servlet>
    <servlet-name>My WS</servlet-name>
    <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
    <init-param>
      <param-name>com.sun.jersey.config.property.packages</param-name>
      <param-value>com.dr1.dr2</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>My WS</servlet-name>
    <url-pattern>/checking</url-pattern>
  </servlet-mapping>

  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

现在,如果我像这样访问:http://localhost:8080/appName/它会完美地进入我的注册操作。但是当我尝试访问 http://localhost:8080/appName/checking(对于 web 服务)时,它甚至查看 struts.xml 并收到如下错误消息:

HTTP 状态 404 - 没有为命名空间/和操作名称检查映射的操作。.. 即使在 web.xml 中定义了这个之后..

有什么办法可以排除 struts2 中的模式,这样当我点击http://localhost:8080/appName/checking时,它一定不能看 struts 动作,它必须调用我在 web.xml 文件中定义的默认页面路径。

谢谢..

4

3 回答 3

5

您可能可以在 struts.xml 中添加排除模式,例如

<struts>
    <constant name="struts.action.excludePattern" value="appName/checking"/>
</struts>

阅读此处并查找 excludePattern 以获取更多信息。

于 2011-11-19T05:43:18.733 回答
1

这可能有效:

     <!-- exclude pattern -->  
 <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/struts/*</url-pattern>
</filter-mapping>

动作示例:

于 2012-12-24T18:24:10.370 回答
0
<constant name="struts.action.excludePattern" value="appName/checking"/>

常量 excludePattern 显式排除(自 2.1.7 起)

于 2011-11-23T16:37:39.083 回答