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 に答える