共计 2584 个字符,预计需要花费 7 分钟才能阅读完成。
SpringBoot 默认的配置文件为 application.properties 或者 application.yml,利用启动时会主动加载此文件,无需手动引入。
自定义属性
在
application.properties
中定义属性值
# 自定义属性
rumenz.name=rumenz
rumenz.url=https://rumenz.com
通过
@Value
注解来获取值
@RestController
@RequestMapping("/rumenz")
public class RumenzController {@Value("${rumenz.name}")
private String rumenzName;
@Value("${rumenz.url}")
private String rumenzUrl;
@RequestMapping("/index")
public String index(){return rumenzName+":::"+rumenzUrl;}
}
拜访
http://127.0.0.1:8080/rumenz/index
门路, 会返回rumenz:::https://rumenz.com
。
配置绑定
有工夫有须要注入的属性比拟多, 一个一个绑定很繁琐, 官网倡议通过 Bean 的形式加载。
application.properties 配置文件定义属性值
com.rumenz.id=1
com.rumenz.name=hello
RumenzConfig 配置文件
@Component
@ConfigurationProperties(prefix = "com.rumenz")
public class RumenzConfig {
private Integer id;
private String name;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
public String getName() {return name;}
public void setName(String name) {this.name = name;}
}
测试
浏览器输出
http://127.0.0.1:8080/rumenz/index1
, 返回1:::hello
@RestController
@RequestMapping("/rumenz")
public class RumenzController {
@Autowired
RumenzConfig rumenzConfig;
@RequestMapping("/index1")
public String index1(){return rumenzConfig.getId()+":::"+rumenzConfig.getName();}
}
参数援用
在 application.properties 中的各个参数之间能够间接援用来应用
com.rumenz.id=1
com.rumenz.name=hello
com.rumenz.des=${com.rumenz.name}${com.rumenz.id}
新建
RumenzController
测试
@RestController
@RequestMapping("/rumenz")
public class RumenzController {@Value("${com.rumenz.des}")
private String rumenzDes;
@RequestMapping("/index2")
public String index2(){
// 配置文件参数援用
//com.rumenz.des=${com.rumenz.name}${com.rumenz.id}
return rumenzDes;
}
}
浏览器拜访
http://127.0.0.1:8080/rumenz/index2
返回 hello1
自定义的配置文件
个别的配置项都在
application.properties
中, 很多时候有一些配置信息咱们想独自寄存。比方咱们创立了一个rumenz.properties
的自定义配置文件。
com.rumenz.tag= 入门小站
com.rumenz.txt= 这是一个教程网站
自定义的配置文件系统不会主动加载, 须要用
@PropertySource
加载。须要加载多个能够用设置数组。
测试
@RestController
@RequestMapping("/rumenz")
@PropertySource(value="classpath:rumenz.properties",encoding = "utf-8")
public class Rumenz1Controller {@Value("${com.rumenz.tag}")
private String rumenzTag;
@Value("${com.rumenz.txt}")
private String rumenzTxt;
@RequestMapping("/index3")
public String index3(){
// 这是自定义配置中配置的属性
return rumenzTag+rumenzTxt;
}
}
浏览器拜访
http://127.0.0.1:8080/rumenz/index3
, 返回入门小站这是一个教程网站
加载多个自定义配置文件
@PropertySource(value = {
"classpath:rumenz.properties",
"classpath:rumenz2.properties",
}, encoding = "utf-8")
本小结源码地址:
- GitHub:https://github.com/mifunc/spr…
- Gitee:https://gitee.com/rumenz/spri…
- https://rumenz.com/rumenbiji/…
介绍
- 我的博客 https://rumenz.com/
- 我的工具箱 https://tooltt.com/
- 微信公众号:【入门小站】
- 关注【入门小站】回复【1001】获取 linux 常用命令速查手册
- 关注【入门小站】回复【1003】获取 LeetCode 题解【java 语言实现】
- 关注【入门小站】回复【1004】获取 Java 根底外围总结
- 关注【入门小站】回复【1009】获取 阿里巴巴 Java 开发手册
正文完