- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用sitebricks在 Google App Engine 上构建 RESTful API。我为我的 GuiceCreator 中的所有/rest/* URL 注册了两个过滤器。 如何使用 filter("/rest/*)
语法但排除一个特定 URL? 我希望/rest/* 下的所有内容都被过滤,除了/rest/1/foo。
我可以枚举所有实际需要过滤的 URL。但这样做的明显缺点是,如果我决定添加或删除端点,它将很难维护。
new ServletModule() {
@Override
protected void configureServlets() {
filter("/rest/*").through(ObjectifyFilter.class);
filter("/rest/*").through(SomeOtherFilter.class);
}
}
我正在寻找类似的结构
filter("/rest/*").exclude("/rest/1/foo").through(ObjectifyFilter.class).
最佳答案
Thanks to dhanji ,我通过使用 filterRegex()
而不是 filter()
修复了这个问题。在我的正则表达式中,我使用 negative lookbehind assertion 。这将过滤除以 /[0-9]/foo
结尾的所有 /rest/.*
URL。
new ServletModule() {
@Override
protected void configureServlets() {
filter("^/rest/.*(?<!/\\d/foo)$").through(ObjectifyFilter.class);
filter("^/rest/.*(?<!/\\d/foo)$").through(SomeOtherFilter.class);
}
}
关于java - 在 ServletModule.configureServlets 中注册过滤器时如何排除 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17656388/
我在使用 Guice 时在网络上找到了使用 AbstractModule 和 ServletModule 类作为父类(super class)型的示例。我想知道在 Web 应用程序中什么场景需要使用哪
我正在尝试遵循有关使用 Guice 作为 Web 服务器的最小教程,而不需要 web.xml:http://www.remmelt.com/post/minimal-guice-servlet-wit
我使用sitebricks在 Google App Engine 上构建 RESTful API。我为我的 GuiceCreator 中的所有/rest/* URL 注册了两个过滤器。 如何使用 fi
我正在尝试使用 Guice 创建的 Vaadin 应用程序实例注入(inject)一个拦截器。 我遵循了 Vaadin Wiki 中的 Vaadin-Guice 集成文档。和 Guice Wiki 中
我正在尝试将 Jetty 从 8 升级到 9.3。由于 _asyncSupported 的默认值变为 false,因此会显示以下错误。 java.lang.IllegalStateException:
我是一名优秀的程序员,十分优秀!