此问题是上一个问题Specify Custom Application Context的后续问题。
我们正在使用jersey-spring将泽西1.x的一些数据服务迁移到泽西2.x.使用jersey-spring3。
我们有一些继承自JerseyTest的测试类。其中一些类使用未在web.xml文件中指定的自定义applicationContext.xml文件。
对于对象模拟目的,我们会在Jersey资源中模拟一些组件。
在Jersey 1.x中,我们可以通过
模拟应用程序上下文文件中的对象<bean id="mockBean" class="org.easymock.EasyMock"
factory-method="createStrictMock" autowire="byName">
<constructor-arg index="0" value="com.xxx.xxx.ClassToMock" />
</bean>
并按如下方式检索这些模拟的实例
ClassToMock obj = (ClassToMock)ContextLoader
.getCurrentWebApplicationContext()
.getAutowireCapableBeanFactory()
.getBean("mockBean");
泽西2.x如何使用jersey-spring3实现同样的目标?
我已经梳理了API docs,user guides和部分sources,但无法找到答案。
谢谢。
修改
我们将在JAX-RS资源中使用模拟bean。我们的资源中有@Autowired
的服务接口。
e.g。
@Path(ProductResource.RESOURCE_PATH)
@Component
@Scope("prototype")
public class ProductResource
extends GenericResource<Product, BaseModel> {
/*
* Members
*/
public static final String RESOURCE_PATH = "product/";
@Autowired
protected ProductService productService;
...
我们希望模仿并设定对这些服务的期望。
e.g。
<bean id="productService" class="org.easymock.EasyMock"
factory-method="createStrictMock">
<constructor-arg index="0"
value="com.xxx.xxx.service.ProductService" />
</bean>
答案 0 :(得分:8)
注意:我不是Spring专家,我认为这是一种解决方案而非推荐方法。希望有人会提出更好的解决方案。
您无法通过调用ApplicationContext
来获取ContextLoader#getCurrentWebApplicationContext()
实例,因为在使用Jersey测试框架(JerseyTest
)时,默认情况下会在Servlet容器外部初始化Jersey 2.x运行时unit / e2e tests。
在这种情况下,您需要通过在测试包中实现ApplicationContextAware接口来使用一点解决方法来获取ApplicationContext
:
public class ApplicationContextUtils implements ApplicationContextAware {
private static ApplicationContext applicationContext;
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
@Override
public void setApplicationContext(final ApplicationContext applicationContext) throws BeansException {
ApplicationContextUtils.applicationContext = applicationContext;
}
}
有了这个课程,不要忘记在你的应用程序上下文描述符中提及它:
...
<bean class="org.glassfish.jersey.examples.helloworld.spring.ApplicationContextUtils" />
...
您可以在测试中使用它:
public class JerseySpringResourceTest extends JerseyTest {
// ... Configure ...
@Before
public void mockUp() throws Exception {
// ApplicationContext is ready in your @Before methods ...
assertThat(ApplicationContextUtils.getApplicationContext(), notNullValue());
}
@Test
public void testJerseyResource() {
// ... as well as in your test methods.
assertThat(ApplicationContextUtils.getApplicationContext(), notNullValue());
}
}
注意:如果要将应用程序部署到Servlet容器并针对它运行(JerseyTest
)测试,请参阅“用户指南”中的Jersey Test Framework章节(特别是External container部分)。
答案 1 :(得分:3)
如果您对此没有任何异议,可以将测试类注入Jersey上下文。
例如:
@Override
protected Application configure() {
final TestJerseyApplication application = new TestJerseyApplication();
final Map<String, Object> properties = new HashMap<>();
properties.put("contextConfigLocation", "classpath:test-spring-context.xml");
application.setProperties(properties);
application.register(this);
return application;
}
之后,@Autowired
注释将适合您。
答案 2 :(得分:1)
对于Jersey 2.X用户来说,这对我有用:
public class AccountResourceTest extends JerseyTest {
private ApplicationContext context;
private BeanA beanA;
private BeanB beanB;
public AccountResourceTest() throws TestContainerException {
super();
beanA = context.getBean(BeanA.class);
beanB = context.getBean(BeanB.class);
}
@Override
protected Application configure() {
context = new AnnotationConfigApplicationContext(SpringConfiguration.class);
final ResourceConfig config = new JerseyConfiguration().property("contextConfig", context);
return config;
}
@Override
protected void configureClient(final ClientConfig config) {
config.register(JacksonJsonProvider.class);
}
...
}
这允许我使用JavaConfig进行Jersey测试,并在上下文中访问bean。这是我得到这个想法的链接:http://geowarin.github.io/spring-boot/jersey/2014/01/31/a-simple-spring-boot-and-jersey-application.html
答案 3 :(得分:1)
对于Jersey版本2.4.x,类JerseyConfiguration
不再存在,并且已被ResourceConfig
取代,后者不理解 contextConfig 属性。这是我的解决方案:
package ch.vd.test;
import java.net.URI;
import javax.ws.rs.core.Application;
import org.glassfish.hk2.api.ServiceLocator;
import org.glassfish.jersey.server.ApplicationHandler;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.test.JerseyTest;
import org.glassfish.jersey.test.grizzly.GrizzlyTestContainerFactory;
import org.glassfish.jersey.test.spi.TestContainer;
import org.glassfish.jersey.test.spi.TestContainerException;
import org.glassfish.jersey.test.spi.TestContainerFactory;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
public class ExampleTest extends JerseyTest {
private ServiceLocator serviceLocator;
@Override
public void setUp() throws Exception {
super.setUp();
final ApplicationContext context = serviceLocator.getService(ApplicationContext.class, "SpringContext");
final Object bean = context.getBean("someBean");
}
@Override
protected Application configure() {
final ResourceConfig config = new ResourceConfig(RestResources.class);
config.property("contextConfigLocation", "classpath:example-context.xml");
return config;
}
@Override
protected TestContainerFactory getTestContainerFactory() throws TestContainerException {
return new GrizzlyTestContainerFactory() {
@Override
public TestContainer create(URI uri, ApplicationHandler appHandler) throws IllegalArgumentException {
serviceLocator = appHandler.getServiceLocator();
return super.create(uri, appHandler);
}
};
}
@Test
public void testStuff() throws Exception {
...
}
}