喜欢
yml
配置文件格式的人性化,也喜欢properties
配置文件管理方式的人性化,那么下面我们就来看一下
yml
是如何配置和使用类似properties
管理方式的人性化。
配置文件
设置Spring Boot 系统
yml
和自定义yml
文件
application.yml
spring:
profiles:
active: dev
include: test #或者 include: "test"
application:
name: test-yml-application
application-test.yml
test:
msg: 这不就是配置文件的内容吗
基于抽象类的使用
常见的有两种方式
@Value
AbstractCp
public abstract class AbstractCp {
@Value("${test.msg}")
private String msg;
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}
Cp
@Component
public class Cp extends AbstractCp {
}
@ConfigurationProperties
AbstractCp
@EnableConfigurationProperties
@ConfigurationProperties("test")
public abstract class AbstractCp {
private String msg;
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}
Cp
@Component
public class Cp extends AbstractCp {
}
原文地址:https://www.cnblogs.com/ljmatlight/p/8328467.html
时间: 2024-10-27 05:04:57