RESTEasy 指南提供者

RESTEasy Guice Provider

我在尝试将 Guice 与 ContainerRequestFilter 结合使用时遇到了一个小问题,它抛出了 NullPointerException。我深入研究了 RESTEasy,由于 @Context 注释不存在,它似乎找不到 MyFilter 的构造函数,在尝试实例化 null 构造函数时抛出 NullPointerException。

我的过滤器:

@Provider
@PreMatching
public class MyFilter implements ContainerRequestFilter {
    private Dependency d;

    @Inject
    public MyFilter(Dependency d) {
        this.d = d;
    }

    @Override
    public void filter(ContainerRequestContext containerRequestContext) throws IOException {
        if (d.doSomething()) {
            Response r = Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
            containerRequestContext.abortWith(r);
        }
    }
}

我已将过滤器添加到我的应用程序 class:

@ApplicationPath("")
public class Main extends Application {
    private Set<Object> singletons = new HashSet<Object>();
    private Set<Class<?>> c = new HashSet<Class<?>>();

    public Main() {
        c.add(Dependency.class);
    }

    @Override
    public Set<Class<?>> getClasses() {
        return c;
    }

    @Override
    public Set<Object> getSingletons() {
        return singletons;
    }
}

我的 Guice 配置:

public class GuiceConfigurator implements Module {
    public void configure(final Binder binder) {
        binder.bind(Dependency.class);
    }
}

我的web.xml:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
         http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    <display-name>My App</display-name>

    <context-param>
        <param-name>resteasy.guice.modules</param-name>
        <param-value>com.example.GuiceConfigurator</param-value>
    </context-param>

    <listener>
        <listener-class>
          org.jboss.resteasy.plugins.guice.GuiceResteasyBootstrapServletContextListener
        </listener-class>
    </listener>
</web-app>

此配置用于将我的依赖项注入资源,但在尝试在提供程序上使用它时出现 NullPointerException。

如有任何帮助,我们将不胜感激。

似乎即使有 RESTeasy/JAX-RS 个组件,您仍然需要使用 Guice 绑定器注册它。起初我不确定,但查看 test cases,似乎我们仍然需要向 Guice 注册我们的资源和提供程序才能使其正常工作。

我在Guice模块中添加过滤器后进行了测试,效果如预期。

public class GuiceConfigurator implements Module {
    public void configure(final Binder binder) {
        binder.bind(MyFilter.class);
        binder.bind(Dependency.class);
    }
}

为了测试,我关闭了 example from the RESTeasy project,添加了一个带有构造函数注入的过滤器,并将过滤器添加到模块绑定器。并且在将过滤器添加到模块时有效,在未添加时失败。