如果我有xml配置文件,我这样写:
@ContextConfiguration(locations = "testContext.xml")
但是我要写的是什么如果我用注释标记我的豆子?
答案 0 :(得分:2)
@ContextConfiguration
有一个名为classes
的{{1}}类型的属性,您可以在其中指定要加载的Class<?>[]
类。
@Configuration
例如,@ContextConfiguration(classes = {com.company.MyConfiguration.class})
是
MyConfiguration