1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.lf.server.config;
|
| import org.springframework.beans.factory.annotation.Value;
| import org.springframework.stereotype.Component;
|
| /**
| * 属性配置类
| * @author WWW
| */
| @Component
| public class PropertiesConfig {
| @Value("${sys.path}")
| private String path;
|
| public String getPath() {
| return path;
| }
|
| public void setPath(String path) {
| this.path = path;
| }
| }
|
|