首页 > Java > java教程 > SpringBoot如何测试配置属性与web启动环境

SpringBoot如何测试配置属性与web启动环境

PHPz
发布: 2023-05-19 17:20:16
转载
851 人浏览过

加载测试专用的属性

点开@SpringBootTest源码中查看

SpringBoot如何测试配置属性与web启动环境

可以在之后加入临时配置, 也可以使用命令行args参数设置。设置的测试专用参数会覆盖配置文件中的。

package com;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest(args = {properties = {"test.properties=1234"})
public class TestProperties {
    @Value("${test.properties}")
    private String ps;
    @Test
    public void test(){
        System.out.println(ps);
    }
}
登录后复制

运行结果

SpringBoot如何测试配置属性与web启动环境

也可以使用命令行参数

args = {"--test.properties=4321"},

命令行参数的优先级比配置文件的高,所以当两者共存的时候,以命令行的为主

@SpringBootTest(args = {"--test.properties=4321"},properties = {"test.properties=1234"})
登录后复制

SpringBoot如何测试配置属性与web启动环境

这个测试类设置的属性只对当前测试有效,影响小

使用外部bean对测试

package com.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration//说明当前为配置类
public class TestBean {
    @Bean//创建bean
    public String mess(){
        return "this bean run ";
    }
}
登录后复制

在测试类下,使用@Import注解加载当前测试配置

package com.test;
import com.config.TestBean;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;
@SpringBootTest
@Import({TestBean.class})
public class TestBeanNow {
    @Autowired//注入bean对象
    public String mess;
    @Test
    public void test(){
        System.out.println(mess);
    }
}
登录后复制

运行结果

SpringBoot如何测试配置属性与web启动环境

测速类启动web环境

在测试类中运行一般是不会启动服务器的,如下图。都是显示运行成功或失败的信息

SpringBoot如何测试配置属性与web启动环境

我们Ctrl+b点进@SpringBootTest源码中查看,有一个关于web的

SpringBoot如何测试配置属性与web启动环境

默认值是MOCK,mock:默认提供一个模拟的web环境,不会启动内嵌的服务器

我们在测试类中

SpringBoot如何测试配置属性与web启动环境

第一个是以你配置文件指定的端口启动,如果没有就默认以8080启动

第二个mock:默认提供一个模拟的web环境,不会启动内嵌的服务器

第三个是不启动服务器

第四个是随机端口启动

我们测试随机端口启动

package com;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class WebTest {
    @Test
    public void test(){
    }
}
登录后复制

运行结果

运行了两次看端口结果,都是随机的

SpringBoot如何测试配置属性与web启动环境

以上是SpringBoot如何测试配置属性与web启动环境的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:yisu.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
java可以做为web的后端吗?
来自于 1970-01-01 08:00:00
0
0
0
web前端是做什么的
来自于 1970-01-01 08:00:00
0
0
0
WEB服务器与应用服务器的区别:
来自于 1970-01-01 08:00:00
0
0
0
php怎么实现控制 ht for web ???
来自于 1970-01-01 08:00:00
0
0
0
laravel - 用api方式开发web可行吗?
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板