4

首先,我使用的是 Google AppEngine 和 Guice,但我怀疑我的问题与这些无关。

当用户连接到我的 (GWT) webapp 时,URL 是一个直接的 html 页面。例如,在开发模式下,它是:http://127.0.0.1:8888/Puzzlebazar.html?gwt.codesvr=127.0.0.1:9997. 现在,我web.xml通过以下方式设置我的:

<?xml version="1.0" encoding="UTF-8"?>
<web-app 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"
 version="2.5">
 <display-name>PuzzleBazar</display-name>

 <!-- Default page to serve -->
 <welcome-file-list>
  <welcome-file>Puzzlebazar.html</welcome-file>
 </welcome-file-list>


 <filter>
  <filter-name>guiceFilter</filter-name>
  <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
 </filter>

 <filter-mapping>
  <filter-name>guiceFilter</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>

 <!--
  This Guice listener hijacks all further filters and servlets. Extra
  filters and servlets have to be configured in your
  ServletModule#configureServlets() by calling
  serve(String).with(Class<? extends HttpServlet>) and
  filter(String).through(Class<? extends Filter)
 -->
 <listener>
  <listener-class>com.puzzlebazar.server.guice.MyGuiceServletContextListener
  </listener-class>
 </listener>

</web-app>

appengine-web.xml的是:

<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
    <application>puzzlebazaar</application>
    <version>1</version>
    <sessions-enabled>true</sessions-enabled>

    <!-- Configure java.util.logging -->
    <system-properties>
        <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>     
    </system-properties>

</appengine-web-app>

由于我使用的是 Guice,因此我必须在我的 ServletModule 中配置额外的过滤器,我在其中执行以下操作:

filter("*.html").through( SecurityCookieFilter.class );

但是我SecurityCookieFilter.doFilter的从来没有被调用过。我尝试了类似"*.html*"<url-pattern>*</url-pattern>但无济于事的事情。知道我应该怎么做吗?

4

2 回答 2

3

您可能已将 html 文件配置为在 appengine-web.xml 中作为静态内容提供。静态文件服务根本不涉及您的应用程序,因此您无法过滤输出。

于 2010-05-05T15:50:29.917 回答
1

如果您需要(像我一样)让 GAE 为静态 HTML 文件添加某些 http 响应标头,您可以通过在 appengine-web.xml 中将它们声明为静态资源来做到这一点,如下所示:

<static-files>
  <include path="/my_static-files" >
    <http-header name="Access-Control-Allow-Origin" value="http://example.org" />
  </include>
</static-files>

我在GAE 文档中找到了这个

于 2016-02-23T19:25:27.167 回答