spring junit 做单元测试,报 Failed to load ApplicationContext 错误(非路径写错的原因)

时间:2024-03-26 13:42:27

做junit单元测试遇到Failed to load ApplicationContext 错误,排查之后发现并不是因为classpath*:applicationContext.xml这种路径写错,而是引入的其他项目的配置文件找不到。

具体解决方案:

eclipse-junit调试配置-类路径-用户条目-高级-添加外部文件夹,,将引入的项目的测试用文件(src\test\resources)添加进来。

spring junit 做单元测试,报 Failed to load ApplicationContext 错误(非路径写错的原因)