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; } }