1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.whyc.config;
|
| import org.springframework.boot.context.properties.ConfigurationProperties;
| import org.springframework.stereotype.Component;
|
| @Component
| @ConfigurationProperties(prefix="file") //接收application.yml中的file下面的属性
| public class MyProps {
| private String filePath;
|
| public String getFilePath() {
| return filePath;
| }
|
| public void setFilePath(String filePath) {
| this.filePath = filePath;
| }
| }
|
|