基于spring-boot的测试桩设计-添加配置文件(properties)
Posted 月色深潭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于spring-boot的测试桩设计-添加配置文件(properties)相关的知识,希望对你有一定的参考价值。
编写测试时,有些内容可以放到配置文件中。
第一步:新增配置文件 conf.properties
第二步:编写配置文件类 MockConf
1 package mock.mockdemo.conf; 2 3 import lombok.Data; 4 import org.springframework.beans.factory.annotation.Value; 5 import org.springframework.context.annotation.PropertySource; 6 import org.springframework.stereotype.Component; 7 8 9 @Data 10 @Component 11 @PropertySource("classpath:config/conf.properties") 12 public class MockConf { 13 @Value("${user_num}") 14 public String userNum; 15 }
第三步:添加接口和实现类
接口:
实现类:
第四步:编写controller
测试:
结果:可以正常获取到配置文件内容
源码地址:
https://github.com/yuesest/mockdemo
以上是关于基于spring-boot的测试桩设计-添加配置文件(properties)的主要内容,如果未能解决你的问题,请参考以下文章
Spring-boot,使用不同配置文件的 JUnit 测试
计算机毕业设计之java+springboot基于vue的车辆充电桩系统