管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-09-28 ca9817461a504049e289c154939454a6e5a37089
src/main/java/com/lf/server/config/PropertiesConfig.java
@@ -1,5 +1,6 @@
package com.lf.server.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
/**
@@ -8,4 +9,14 @@
 */
@Component
public class PropertiesConfig {
    @Value("${sys.path}")
    private String path;
    public String getPath() {
        return path;
    }
    public void setPath(String path) {
        this.path = path;
    }
}