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

Spring Boot 自定义配置类

程序员文章站 2022-05-01 08:09:38
...

1. 编写自定义配置

test:
  testName: ‘unit testing’
  testAddress: 127.0.0.1
  testDuration: 60

2. 编写配置类

@Component
@ConfigurationProperties(prefix = "test")
@Data //lombook自动生成 geter、seter 方法
public class TestConfige {
	private String testName;
	private String testAddress;
	private testDuration;
}

3. 在使用的地方直接注入

@Autowired
private TestConfige testConfige;