Spring整合JUnit4测试时,使用注解引入多个配置文件
Posted 李慕白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring整合JUnit4测试时,使用注解引入多个配置文件相关的知识,希望对你有一定的参考价值。
一般情况下:
- @ContextConfiguration(Locations="../applicationContext.xml")
多个文件时,可用{}
- @ContextConfiguration(locations = { "classpath*:/spring1.xml", "classpath*:/spring2.xml" })
以上是关于Spring整合JUnit4测试时,使用注解引入多个配置文件的主要内容,如果未能解决你的问题,请参考以下文章
学习笔记——Spring中组件扫描(包含扫描排除扫描)Spring中完全注解开发;Spring整合Junit4步骤
框架 day36 Spring3 入门,DI依赖注入,装配bean基于xml/注解, 整合Junit4,配置约束自动提示