1

我的 DI 框架是 Guice。我也使用网站砖。也许我对这两个 API 的简单程度很着迷。但是我想使用 guice 绑定一个过滤器来监听 /* 但是过滤器只监听 / ?这是为什么?

public class CoreModule extends ServletModule {


    @Override
    protected void configureServlets() {
                                filter("/*").through(Guard.class);
                                install(new SsoModule());
                                install(new PersistenceModule());
                   } 

            }

当我调用localhost:8080/过滤器时执行但当我调用localhost:8080/index过滤器时不执行!这是为什么?

4

0 回答 0