@Inject一个bean进入Jersey @Path JAX-RS资源需要bean-discovery-mode =“all”吗?

时间:2016-09-22 21:00:22

标签: java dependency-injection jax-rs cdi payara

我正在使用Payara 4.1.1.161。我有一个Jersey @Path JAX-RS资源,我想做的就是使用CDI @Inject a bean。我已经尝试了很多不同的组合来实现这一点,但到目前为止,我成功运行的唯一方法是在beans.xml中设置bean-discovery-mode =“all”。

我知道“annotated”是首选模式,没有beans.xml甚至更优先。但每当我尝试使用“注释”时,我要么失败调用JAX-RS资源,看起来像这样:

MultiException stack 1 of 1
org.glassfish.hk2.api.UnsatisfiedDependencyException: 
There was no object available for injection at
SystemInjecteeImpl(requiredType=InjectMe, parent=InjectResource,
qualifiers={}, position=-1, optional=false, self=false,
unqualified=null, 1000687916))

或者我部署了如下所示的应用程序失败:

Exception during lifecycle processing
java.lang.Exception: java.lang.IllegalStateException:
ContainerBase.addChild: start: org.apache.catalina.LifecycleException:
org.apache.catalina.LifecycleException:
org.jboss.weld.exceptions.DeploymentException: WELD-001408: 
Unsatisfied dependencies for type InjectMe with qualifiers @Default
at injection point [BackedAnnotatedField] 
@Inject private org.thoth.jaspic.web.InjectResource.me

这是我的应用程序设置。

的beans.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans 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/beans_1_1.xsd"
       bean-discovery-mode="all">
</beans>

JAX-RS应用程序

@javax.ws.rs.ApplicationPath("webresources")
public class ApplicationResourceConfig  extends org.glassfish.jersey.server.ResourceConfig {
    public ApplicationResourceConfig() {
        register(RolesAllowedDynamicFeature.class);
        registerClasses(
            org.thoth.jaspic.web.InjectResource.class
        );
     }
 }

JAX-RS资源

@Path("inject")
public class InjectResource {
    @Inject
    private InjectMe me;

    @GET
    @Produces(MediaType.TEXT_HTML)
    public String getText(@Context SecurityContext context) {
        Principal p = context.getUserPrincipal();
        String retval = "<h3>inject</h3>";
        retval += String.format("<p>me=[%s]</p>", me);
        return retval;
    }
}

我想要注入简单的bean

public class InjectMe implements Serializable {

    private static final long serialVersionUID = 158775545474L;

    private String foo;

    public String getFoo() {
        return foo;
    }

    public void setFoo(String foo) {
        this.foo = foo;
    }
 }

同样,如果我的应用程序如上面的配置和bean-discovery-mode =“all”所示,一切似乎都没问题,应用程序部署没有错误,并且在调用JAX-RS服务时,bean被注入没有错误。但是,当我切换到bean-discovery-mode =“annotated”或者如果我根本没有beans.xml文件那么事情就会发生可怕的错误。

那么你可以@inject一个bean进入一个运行Payara 4.1.1.161的Jersy @Path JAX-RS资源,没有beans.xml或者bean-discovery-mode =“annotated”?

1 个答案:

答案 0 :(得分:5)

您的JAX-RS资源类需要有一个定义注释的bean来启用CDI bean的注入。只需将@ApplicationScoped@RequestScoped添加到您的JAX-RS资源中,然后bean注入就可以在没有bean发现模式的情况下工作。

BTW我假设InjectMe bean也有某种形式的范围注释,因为它没有在上面的代码中显示。

例如;

@Path("inject")
@ApplicationScoped
public class InjectResource {