结合Spring项目和Jersey

时间:2015-09-02 14:25:46

标签: java spring jersey jax-rs

我用Spring JPA构建了一个项目,现在我想在Jersey项目中使用它。 我已将我的SJPA项目添加为我的pom.xml中的依赖项

当我使用GET / POST / PUT / DELETE方法时,我想使用我的SJPA中的服务类。 使用注释有一种简单的方法吗?或者我必须在每节课中获得AnnotationConfigApplicationContext?感觉有点浪费。

@Path("/users")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public final class UserResource
{
    private AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    private PodcastService service;

    @GET
    public Response getAllPodcasts() {
        context.scan("org.villy.spring.service");
        context.refresh();
        service= context.getBean(PodcastService.class);
        return Response.ok(service.findAll()).build();
    }
}

1 个答案:

答案 0 :(得分:13)

注意:下面链接的示例项目来自Jersey master分支,该分支目前是Jersey 3的快照,尚未发布。 Jersey 3将使用Spring 4,因此您可能会注意到依赖jersey-spring4。这种依赖关系尚不存在,因为泽西岛3尚未发布(可能暂时还没有)。所以使用的依赖是jersey-spring3。所有示例仍应该相同,只需更改一个依赖项。如果您想使用Spring 4,请参阅本答案中下面示例pom中列出的依赖项

您无需在需要该服务的地方创建ApplicationContext。您应该能够配置全局的。 Jersey有一个模块,它集成了两个框架。这允许您将所有Spring服务@Autowired简单地放入Jersey资源类中。

我不会尝试制作任何示例,而只是链接到官方示例。它们直接来自项目,因此链接应该是好的一段时间。特别注意Maven依赖项。您需要确保让它们用于示例才能工作。

注意:示例中的${spring3.version}版本为3.2.3.RELEASE。可以将Spring 4与示例一起使用,但是您需要确保从jersey-spring3依赖项中排除所有Spring传递依赖项。

[ 1 ] - 关于Java配置示例需要注意的一点是它使用独立的应用程序。要在Web应用程序中使用Java配置,需要一些技巧。这是a known bug,其中Jersey查找带有contextConfigLocation文件位置的参数applicationContext.xml,并在找不到该文件时抛出异常。

我找到了一些方法。

  1. 提出问题的人提到了这方面的一个例子。您可以创建一个Spring Web初始化程序,您可以在其中配置spring上下文覆盖param属性。 (参见完整示例here)。

    @Order(1)
    public class SpringWebContainerInitializer implements WebApplicationInitializer {
    
        @Override
        public void onStartup(ServletContext servletContext) throws ServletException {
            registerContextLoaderListener(servletContext);
    
            // Set the Jersey used property to it won't load a ContextLoaderListener
            servletContext.setInitParameter("contextConfigLocation", "");
        }
    
        private void registerContextLoaderListener(ServletContext servletContext) {
            WebApplicationContext webContext;
            webContext = createWebAplicationContext(SpringAnnotationConfig.class);
            servletContext.addListener(new ContextLoaderListener(webContext));
        }
    
        public WebApplicationContext createWebAplicationContext(Class... configClasses) {
            AnnotationConfigWebApplicationContext context;
            context = new AnnotationConfigWebApplicationContext();
            context.register(configClasses);
            return context;
        }
    }
    
  2. 您可以简单地将applicationContext.xml添加到类路径中,只需将spring Java配置类注册为bean

    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context.xsd">
    
    
        <context:annotation-config/>
        <bean id="config" class="com.your.pkg.SpringAnnotationConfig"/>
    
    </beans>
    
  3. 还有另一种我能想到的方法,但我已经保存了一段时间,我可以实际测试一下。

  4. 更新

      

    “无法读取候选组件类... ASM ClassReader无法解析类文件 - 可能是由于尚未支持的新Java类文件版本”

    似乎与this有关,使用Spring 3和Java 8.就像我说的,如果你想使用Spring 4,你需要从jersey-spring3中排除Spring传递依赖关系更改显式声明的Spring依赖项的版本。这是一个我测试和工作的例子。

    <dependency>
        <groupId>org.glassfish.jersey.ext</groupId>
        <artifactId>jersey-spring3</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework</groupId>
                <artifactId>spring-beans</artifactId> 
            </exclusion>
            <exclusion>
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId> 
            </exclusion>
            <exclusion>
                <groupId>org.springframework</groupId>
                <artifactId>spring-aop</artifactId> 
            </exclusion>
            <exclusion>
                <groupId>org.springframework</groupId>
                <artifactId>spring-web</artifactId> 
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
        <version>4.1.0.RELEASE</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aop</artifactId>
        <version>4.1.0.RELEASE</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjrt</artifactId>
        <version>1.8.1</version>
    </dependency>
    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
        <version>1.8.1</version>
    </dependency>