🍹 配置属性引用
自 1.5.3
版本起,Forest 支持在模板表达式中直接引用 Properties 配置中的任意属性值
语法格式: 使用井号字符#
跟一对花括号{}
形式,将变量名包裹起来,如 #{username}
引用的配置属性可以是来自yaml
文件中
mydata:
username: foo
password: bar
1
2
3
2
3
或是properties
文件中
mydata.username=foo
mydata.password=bar
1
2
2
然后就可以在注解的属性中直接引用了
@Get(url = "http://localhost:8080/?u=#{mydata.username}&pwd=#{mydata.password}")
String getData();
// 产生URL:
// http://localhost:8080/?u=foo&pwd=bar
1
2
3
4
5
2
3
4
5
帮助我们改善此文档 (opens new window)
上次更新: 2024/02/27, 12:43:35