指定定制应用上下文

时间:2013-08-16 17:13:29

标签: java spring unit-testing jersey-2.0

我们正在使用jersey-spring将泽西1.x的一些数据服务迁移到泽西2.x.使用jersey-spring3。

我们有一些继承自JerseyTest的测试类。其中一些类使用未在web.xml文件中指定的自定义applicationContext.xml文件。

在Jersey 1.x中,扩展JerseyTest的测试类可以使用WebappDescriptor.Builder调用超级构造函数,可以传递上下文参数来设置或覆盖应用程序上下文路径。

E.g。

public MyTestClassThatExtendsJerseyTest()
{
    super(new WebAppDescriptor.Builder("com.helloworld")
    .contextParam( "contextConfigLocation", "classpath:helloContext.xml")
    .servletClass(SpringServlet.class)
    .contextListenerClass(ContextLoaderListener.class)
    .requestListenerClass(RequestContextListener.class).build());
}

泽西2.x如何实现同样的目标?

我已经梳理了API docsuser guides和部分sources,但无法找到答案。

谢谢。

2 个答案:

答案 0 :(得分:8)

这对我来说没有用,因为我没有使用.xml样式配置,我使用的是@Configuration注释。所以我不得不直接向ResourceConfig类提供应用程序上下文。

我在JerseyTest中定义了configure方法,如下所示:

@Override
protected Application configure() {
  ResourceConfig rc = new ResourceConfig();

  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(SpringConfig.class);
  rc.property("contextConfig", ctx);
}

其中SpringConfig.class是我的@Configuration注释和类 导入org.springframework.context.annotation.AnnotationConfigApplicationContext

答案 1 :(得分:7)

让我们假设你的Application看起来像是:

@ApplicationPath("/")
public class MyApplication extends ResourceConfig {

    /**
     * Register JAX-RS application components.
     */
    public MyApplication () {
        // Register RequestContextFilter from Spring integration module. 
        register(RequestContextFilter.class);

        // Register JAX-RS root resource.
        register(JerseySpringResource.class);
    }
}

您的JAX-RS根资源如:

@Path("spring-hello")
public class JerseySpringResource {

    @Autowired
    private GreetingService greetingService;

    @Inject
    private DateTimeService timeService;

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getHello() {
        return String.format("%s: %s", timeService.getDateTime(), greetingService.greet("World"));
    }
}

您可以直接从类路径中获得名为helloContext.xml的Spring描述符。现在,您想使用Jersey Test Framework测试您的getHello资源方法。你可以写下你的测试:

public class JerseySpringResourceTest extends JerseyTest {

    @Override
    protected Application configure() {
        // Enable logging.
        enable(TestProperties.LOG_TRAFFIC);
        enable(TestProperties.DUMP_ENTITY);

        // Create an instance of MyApplication ...
        return new MyApplication()
                // ... and pass "contextConfigLocation" property to Spring integration.
                .property("contextConfigLocation", "classpath:helloContext.xml");
    }

    @Test
    public void testJerseyResource() {
        // Make a better test method than simply outputting the result.
        System.out.println(target("spring-hello").request().get(String.class));
    }
}