ServletModule.filter 与@WebFilter
ServletModule.filter versus @WebFilter
我正在尝试遵循关于将 Guice 用于 Web 服务器的最小教程,而不需要 web.xml:http://www.remmelt.com/post/minimal-guice-servlet-without-web-xml/
与本教程的创建者一样,我无法使 ServletModule 过滤器命令按预期工作,但是所有相同的代码,而不是在过滤器 class 上使用 @WebFilter 属性会导致工作正常网络服务器。
如何使 ServletModule 过滤器工作? ServletModule 的 filter 方法和@WebFilter 属性的区别是什么导致了这种预期上的差异?
除了教程中涵盖的内容外,我还尝试在 "filter" 命令之前绑定过滤器。
@WebListener
public class GuiceServletConfig extends GuiceServletContextListener {
@Override
protected Injector getInjector() {
return Guice.createInjector(new ServletModule() {
@Override
protected void configureServlets() {
super.configureServlets();
serve("/*").with(WiredServlet.class);
filter("/*").through(GuiceWebFilter.class);
bind(MessageSender.class).to(MessageSenderImpl.class);
}
});
}
}
public class GuiceWebFilter extends GuiceFilter{
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
super.doFilter(servletRequest, servletResponse, filterChain);
}
}
@Singleton
public class WiredServlet extends HttpServlet {
@Inject
private MessageSender messageSender;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.getOutputStream().print("Hello world!");
}
}
使用@WebFilter("/*"),我得到一个简单的响应"Hello World!"。
使用过滤器(“/*”),我在同一请求上得到了 404。
据我所知,我要找的是不可能的。为了在没有 @WebFilter 属性的情况下声明 Filter,您必须具有这样的 web.xml:
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Application</display-name>
<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>
</web-app>
所以总而言之,您可以使用@WebFilter 属性,或者您必须有一个web.xml,为了更易于阅读的配置,没有办法避免两者。
我正在尝试遵循关于将 Guice 用于 Web 服务器的最小教程,而不需要 web.xml:http://www.remmelt.com/post/minimal-guice-servlet-without-web-xml/
与本教程的创建者一样,我无法使 ServletModule 过滤器命令按预期工作,但是所有相同的代码,而不是在过滤器 class 上使用 @WebFilter 属性会导致工作正常网络服务器。
如何使 ServletModule 过滤器工作? ServletModule 的 filter 方法和@WebFilter 属性的区别是什么导致了这种预期上的差异?
除了教程中涵盖的内容外,我还尝试在 "filter" 命令之前绑定过滤器。
@WebListener
public class GuiceServletConfig extends GuiceServletContextListener {
@Override
protected Injector getInjector() {
return Guice.createInjector(new ServletModule() {
@Override
protected void configureServlets() {
super.configureServlets();
serve("/*").with(WiredServlet.class);
filter("/*").through(GuiceWebFilter.class);
bind(MessageSender.class).to(MessageSenderImpl.class);
}
});
}
}
public class GuiceWebFilter extends GuiceFilter{
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
super.doFilter(servletRequest, servletResponse, filterChain);
}
}
@Singleton
public class WiredServlet extends HttpServlet {
@Inject
private MessageSender messageSender;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.getOutputStream().print("Hello world!");
}
}
使用@WebFilter("/*"),我得到一个简单的响应"Hello World!"。
使用过滤器(“/*”),我在同一请求上得到了 404。
据我所知,我要找的是不可能的。为了在没有 @WebFilter 属性的情况下声明 Filter,您必须具有这样的 web.xml:
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Application</display-name>
<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>
</web-app>
所以总而言之,您可以使用@WebFilter 属性,或者您必须有一个web.xml,为了更易于阅读的配置,没有办法避免两者。