单个配置文件的引入
@ContextConfiguration(Locations="../applicationContext.xml")
多个配置文件的引入
@ContextConfiguration(locations = { "classpath*:/spring1.xml", "classpath*:/spring2.xml" })
本文共 222 字,大约阅读时间需要 1 分钟。
单个配置文件的引入
@ContextConfiguration(Locations="../applicationContext.xml")
多个配置文件的引入
@ContextConfiguration(locations = { "classpath*:/spring1.xml", "classpath*:/spring2.xml" })
转载于:https://my.oschina.net/u/3211737/blog/1913211