SpringBoot如何读取配置文件参数并全局使用

这篇文章主要介绍了SpringBoot如何读取配置文件参数并全局使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

前言:

读取配置文件参数的方法:@Value("${xx}")注解。但是@Value不能为static变量赋值,而且很多时候我们需要将参数放在一个地方统一管理,而不是每个类都赋值一次。

正文:

注意:一定要给类加上@Component 注解

application.xml

test:

app_id: 12345

app_secret: 66666

is_active: true

统一读取配置文件参数:

package com.example.demo.config;

import org.springframework.beans.factory.annotation.Value;

import org.springframework.context.annotation.Configuration;

@Configuration

public class YxConfig {

public static String appId;

public static String appSecret;

public static boolean isActive;

@Value("${test.app_id}")

public void setAppId(String param) {

appId = param;

}

@Value("${test.app_secret}")

public void setAppSecret(String param) {

appSecret = param;

}

@Value("${test.is_active}")

public void setIsActive(boolean param) {

isActive = param;

}

}

测试类:

@RunWith(SpringRunner.class)

@SpringBootTest

public class YxConfigTest {

@Test

public void test() {

System.out.print("app_id:" + YxConfig.appId + "; ");

System.out.print("app_secret:" + YxConfig.appSecret+ "; ");

System.out.print("is_active:" + YxConfig.isActive);

}

}

结果:

以上是 SpringBoot如何读取配置文件参数并全局使用 的全部内容, 来源链接: utcz.com/z/328255.html

回到顶部