欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring boot 读取yml的自定义参数

程序员文章站 2022-04-30 11:12:16
...

刚开始接触Spring boot, 记录下。

yml中自定义参数

custom:
  ftpConfig:
    enable: 1
复制代码

代码中读取

@Value("${custom.ftpConfig.enable}")
private int enable;
复制代码

转载于:https://juejin.im/post/5afc04d26fb9a07ac1629c22