Java 类org.springframework.boot.loader.util.SystemPropertyUtils 实例源码

项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:PropertiesLauncher.java   
private void initializePaths() throws IOException {
    String path = SystemPropertyUtils.getProperty(PATH);
    if (path == null) {
        path = this.properties.getProperty(PATH);
    }
    if (path != null) {
        this.paths = parsePathsProperty(
                SystemPropertyUtils.resolvePlaceholders(path));
    }
    log("Nested archive paths: " + this.paths);
}
项目:spring-boot-concourse    文件:PropertiesLauncher.java   
private void initializePaths() throws IOException {
    String path = SystemPropertyUtils.getProperty(PATH);
    if (path == null) {
        path = this.properties.getProperty(PATH);
    }
    if (path != null) {
        this.paths = parsePathsProperty(
                SystemPropertyUtils.resolvePlaceholders(path));
    }
    log("Nested archive paths: " + this.paths);
}
项目:contestparser    文件:PropertiesLauncher.java   
private void initializePaths() throws IOException {
    String path = SystemPropertyUtils.getProperty(PATH);
    if (path == null) {
        path = this.properties.getProperty(PATH);
    }
    if (path != null) {
        this.paths = parsePathsProperty(
                SystemPropertyUtils.resolvePlaceholders(path));
    }
    this.logger.info("Nested archive paths: " + this.paths);
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:PropertiesLauncher.java   
protected File getHomeDirectory() {
    return new File(SystemPropertyUtils
            .resolvePlaceholders(System.getProperty(HOME, "${user.dir}")));
}
项目:spring-boot-concourse    文件:PropertiesLauncher.java   
protected File getHomeDirectory() {
    return new File(SystemPropertyUtils
            .resolvePlaceholders(System.getProperty(HOME, "${user.dir}")));
}
项目:contestparser    文件:PropertiesLauncher.java   
protected File getHomeDirectory() {
    return new File(SystemPropertyUtils
            .resolvePlaceholders(System.getProperty(HOME, "${user.dir}")));
}