泽西2 +春天:@Autowired是空的

时间:2014-09-17 19:53:50

标签: java spring jersey-2.0

我试图在本文的帮助下使用Jersey 2和Spring: How to use Jersey 2 with Spring IoC container

但是当应用程序在客户端请求之后尝试调用它时,autowired bean为null。 在applicationContext.xml中,我只有组件扫描设置。

In pom.xml: 
<spring.version>4.1.0.RELEASE</spring.version>
<jersey.version>2.12</jersey.version>

@Component
@RequestScoped
@Path("/user")
public class UserREST {
    @Autowired
    private UserFacade userFacade;

    @POST
    @Path("/auth")
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces({MediaType.APPLICATION_JSON})
    public AuthResponse authorize(User user){
        return userFacade.authorize(user);  // Null is caught here
    }
}

-

@Component
public class UserFacade {

    public AuthResponse authorize(com.pushock.model.User user){
        AuthResponse response = new AuthResponse();
        response.setAuthorized(true);
        return response;
    }
}

我做错了什么?

UPD: 这是我的pom.xml https://bitbucket.org/spukhov/memo-ws/src/00724e00e3aa786f62fd0e43fe0606de6ae569df/pom.xml?at=master

2 个答案:

答案 0 :(得分:11)

Spring托管bean无法直接注入JAX-RS类,您需要使用Jersey扩展将其与Spring集成。

您的pom.xml

中没有maven依赖项
<dependency>
    <groupId>org.glassfish.jersey.ext</groupId>
    <artifactId>jersey-spring3</artifactId>
    <version>2.12</version>
</dependency>

请参阅Jersey文档:Chapter 22. Spring DI,在页面底部,有一个指向sample spring integration Github项目的链接。

我在项目中看到的另一个问题是你没有展示如何加载和配置spring上下文。您需要在web.xml中配置它

   <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>

答案 1 :(得分:1)

如果您使用基于Java的方法进行弹簧配置,您还需要:

servletContext.setInitParameter("contextConfigLocation", "<NONE>");
您的WebApplicationInitializer实施

中的