1

我按照http://www.mkyong.com/google-app-engine/google-app-engine-struts-2-example的示例在 Google App Engine 中尝试了 Struts 2

它工作得很好,但我无法访问应该在http://localhost:8888/_ah/admin中访问的开发控制台

和过滤器有关吗?如何修复它?

下面是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"
    version="2.5">
    <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>

    <listener>
        <listener-class>com.mkyong.listener.Struts2ListenerOnGAE</listener-class>
    </listener>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
</web-app>
4

2 回答 2

1

是的,<url-pattern>/*</url-pattern>将所有内容映射到 Struts 过滤器。

于 2012-05-02T00:58:42.590 回答
0

我通过将下面的代码附加到 struts.xml 来解决它

<constant name="struts.action.excludePattern" value="/_ah/admin"/>
于 2012-05-02T09:03:29.000 回答