我有以下測試類如何訪問jUnit測試中使用@RunWith和@ContextConfiguration註釋的Spring上下文?
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"/services-test-config.xml"})
public class MySericeTest {
@Autowired
MyService service;
...
}
是否有可能以編程方式訪問services-test-config.xml
在這樣的方法嗎?像:
ApplicationContext ctx = somehowGetContext();
不可能在Spring 3.0及以上者,到這個日期。 – ALOToverflow 2010-12-09 18:44:26
奇怪的是,我正在運行我所有的Spring 3.0測試... – Daff 2010-12-09 18:57:48