2

我想删除 Struts2 应用程序中的操作后缀扩展。

添加<constant name="struts.action.extension" value=""/>struts.xml 但 Apache 服务器会引发 404 错误。

HTTP 状态 404 - 没有为与上下文路径 [/Ideck_V3] 关联的命名空间 [/] 和操作名称 [login.jsp] 映射的操作。

welcome-file-listweb.xml第一页使用。这是web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>com.hbs.ideck.common.Struts2Dispatcher</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>login.jsp</welcome-file>
    </welcome-file-list>
</web-app>

这里是struts.xml

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

<struts>
    <constant name="struts.action.extension" value=""/> 
    <include file="user.xml"/>
    <include file="vendor.xml"/>
    <include file="settings.xml"/>
</struts>

我该如何解决这个问题?

4

2 回答 2

1

由于您没有为您的操作设置任何扩展名,因此“/*”中的所有内容(请参阅您的 web.xml)都会被拦截。如果您想过滤所有内容并且不设置任何扩展名,那么所有内容都将成为struts的动作。

您可以尝试仅过滤路径

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/actions/*</url-pattern>
</filter-mapping>

或者你必须设置一个扩展

<constant name="struts.action.extension" value="action" />

或者排除一些模式

<constant name="struts.action.excludePattern" value="A REGEX"/>
于 2015-08-11T11:22:01.990 回答
1

默认扩展映射是",,action". 这意味着您可以使用映射到带有.action后缀和不带有后缀的动作名称,因此如果要删除动作后缀扩展名,您需要将其指定struts.xml

<constant name="struts.action.extension" value=","/>

请注意,没有操作后缀的操作映射仍然存在。它允许解析 url 中的扩展,.jsp并且不要将其与操作名称混淆。

于 2015-08-11T11:38:18.770 回答