@contextconfiguration模拟注释样式

时间:2013-09-05 13:39:03

标签: java spring spring-mvc

如果我有xml配置文件,我这样写:

@ContextConfiguration(locations = "testContext.xml")

但是我要写的是什么如果我用注释标记我的豆子?

1 个答案:

答案 0 :(得分:2)

@ContextConfiguration有一个名为classes的{​​{1}}类型的属性,您可以在其中指定要加载的Class<?>[]类。

@Configuration

例如,@ContextConfiguration(classes = {com.company.MyConfiguration.class})

MyConfiguration