SSM搭建Spring单元测试环境 [ 技术杂谈 ]
九叶的小窝 文章 正文
九叶
{{nature("2021-04-22 17:58:47")}}更新步骤
- 导入SpringTest模块
- @ContextConfiguration注解指定Spring配置文件的位置 自动创建IOC容器
- @RunWith指定spring单元测试模块
- 直接使用@Autowired或@Resource注解注入需要测试的组件
1.1 导入Spring-test jar包
下载地址: https://mvnrepository.com/artifact/org.springframework/spring-test
maven: 在pom.xml中添加
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
1.2 @ContextConfiguration指定Spring配置文件的位置
1.3 直接使用@Autowired或@Resource注解注入组件
1.4编写测试代码
1.5运行测试一下
{{nature('2021-12-07 15:29:00')}} {{format('2898')}}人已阅读
{{nature('2021-01-31 20:01:00')}} {{format('1243')}}人已阅读
{{nature('2020-12-11 21:17:00')}} {{format('1171')}}人已阅读
{{nature('2021-04-22 15:16:00')}} {{format('1124')}}人已阅读
目录
标签云
一言
评论 0
{{userInfo.data?.nickname}}
{{userInfo.data?.email}}