Java Code Examples for org.springframework.core.env.SimpleCommandLinePropertySource#containsProperty()

The following examples show how to use org.springframework.core.env.SimpleCommandLinePropertySource#containsProperty() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OpenRun.java    From seed with Apache License 2.0 6 votes vote down vote up
private static String getProfile(SimpleCommandLinePropertySource source){
    if(source.containsProperty(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到spring变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, source.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return source.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getProperties().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到java变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getenv().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到系统变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getenv(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getenv(SeedConstants.BOOT_ACTIVE_NAME);
    }
    log.warn("未读取到{},默认取环境:{}", SeedConstants.BOOT_ACTIVE_NAME, SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE);
    return SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE;
}
 
Example 2
Source File: QssRun.java    From seed with Apache License 2.0 6 votes vote down vote up
private static String getProfile(SimpleCommandLinePropertySource source){
    if(source.containsProperty(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到spring变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, source.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return source.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getProperties().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到java变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getenv().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到系统变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getenv(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getenv(SeedConstants.BOOT_ACTIVE_NAME);
    }
    log.warn("未读取到{},默认取环境:{}", SeedConstants.BOOT_ACTIVE_NAME, SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE);
    return SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE;
}
 
Example 3
Source File: BootRun.java    From seed with Apache License 2.0 6 votes vote down vote up
private static String getProfile(SimpleCommandLinePropertySource source){
    if(source.containsProperty(SeedConstants.BOOT_ACTIVE_NAME)){
        //补充:IntelliJ IDEA运行时,如果在Run/Debug Configurations为该启动类配置Program arguments的值为"--spring.profiles.active=dev"
        //那么这里就能读取到该配置,同时控制台会打印"读取到spring变量:spring.profiles.active=dev"
        log.info("读取到spring变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, source.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return source.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getProperties().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到java变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getenv().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到系统变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getenv(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getenv(SeedConstants.BOOT_ACTIVE_NAME);
    }
    log.warn("未读取到{},默认取环境:{}", SeedConstants.BOOT_ACTIVE_NAME, SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE);
    //logback-boot.xml中根据环境变量配置日志是否输出到控制台时,使用此配置
    System.setProperty(SeedConstants.BOOT_ACTIVE_NAME, SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE);
    return SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE;
}
 
Example 4
Source File: MppRun.java    From seed with Apache License 2.0 6 votes vote down vote up
private static String getProfile(SimpleCommandLinePropertySource source){
    if(source.containsProperty(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到spring变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, source.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return source.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getProperties().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到java变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getProperty(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getProperty(SeedConstants.BOOT_ACTIVE_NAME);
    }
    if(System.getenv().containsKey(SeedConstants.BOOT_ACTIVE_NAME)){
        log.info("读取到系统变量:{}={}", SeedConstants.BOOT_ACTIVE_NAME, System.getenv(SeedConstants.BOOT_ACTIVE_NAME));
        return System.getenv(SeedConstants.BOOT_ACTIVE_NAME);
    }
    log.warn("未读取到{},默认取环境:{}", SeedConstants.BOOT_ACTIVE_NAME, SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE);
    return SeedConstants.BOOT_ACTIVE_DEFAULT_VALUE;
}
 
Example 5
Source File: GatewayApp.java    From jhipster-ribbon-hystrix with GNU General Public License v3.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
            !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 6
Source File: BarApp.java    From jhipster-ribbon-hystrix with GNU General Public License v3.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
            !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 7
Source File: FooApp.java    From jhipster-ribbon-hystrix with GNU General Public License v3.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
            !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 8
Source File: AbstractApplication.java    From huanhuan-blog with Apache License 2.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
protected static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if ((System.getProperty("spring.profiles.active") == null)
            && !source.containsProperty("spring.profiles.active")
            && !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {
        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 9
Source File: GpmrApp.java    From gpmr with Apache License 2.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
        !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 10
Source File: AbstractApplication.java    From springboot-multiple-dataSources with Apache License 2.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
protected static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if ((System.getProperty("spring.profiles.active") == null)
            && !source.containsProperty("spring.profiles.active")
            && !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {
        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 11
Source File: Application.java    From todo-spring-angular with MIT License 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
        !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 12
Source File: Application.java    From angularjs-springboot-bookstore with MIT License 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
            !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 13
Source File: Application.java    From ServiceCutter with Apache License 2.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
            !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}
 
Example 14
Source File: Application.java    From expper with GNU General Public License v3.0 5 votes vote down vote up
/**
 * If no profile has been configured, set by default the "dev" profile.
 */
private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
    if (!source.containsProperty("spring.profiles.active") &&
            !System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {

        app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
    }
}