SpringBoot自定义Properties
程序员文章站
2024-03-14 15:13:10
...
1、在resources文件夹下新建一个app-config.properties文件(名字随便起)
#客服电话
app-config.phone=170xxxxxxxx
#App名字
app-config.appName=xxx
#App版本号
app-config.appVersion=1.0.0
#Pad名字
app-config.padName=xxx
#Pad版本号
app-config.padVersion=1.0.0
2、新建一个类
package com.vip.jwt.config;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
@Getter
@Setter
@Component
@PropertySource(value = {"classpath:app-config.properties"})
@ConfigurationProperties(prefix = "app-config")
public class AppConfig {
private String phone;
private String appName;
private String appVersion;
private String padName;
private String padVersion;
}
3、使用
@Autowired
private AppConfig appConfig;
上一篇: AES DES MD5 加密