我在Google App Engine中尝试了Struts 2,例如http://www.mkyong.com/google-app-engine/google-app-engine-struts-2-example
它工作正常但我无法访问应该在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>
答案 0 :(得分:1)
是的,<url-pattern>/*</url-pattern>
将所有内容映射到Struts过滤器。
答案 1 :(得分:0)
我通过将下面的代码附加到struts.xml
来解决了这个问题<constant name="struts.action.excludePattern" value="/_ah/admin"/>