Browse Source
Fix `ConfigFileApplicationListener` to repeatedly load property sources and activate profiles using any defined `spring.active.profiles` properties. This restores the ability to have a property in a profile specific file that defines additional profiles. Fixes gh-308pull/313/head
5 changed files with 98 additions and 13 deletions
@ -0,0 +1,50 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2012-2014 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.boot; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
import org.springframework.context.ConfigurableApplicationContext; |
||||||
|
import org.springframework.context.annotation.Configuration; |
||||||
|
|
||||||
|
import static org.hamcrest.Matchers.equalTo; |
||||||
|
import static org.junit.Assert.assertThat; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests to reproduce reported issues. |
||||||
|
* |
||||||
|
* @author Phillip Webb |
||||||
|
*/ |
||||||
|
public class ReproTests { |
||||||
|
|
||||||
|
@Test |
||||||
|
public void enableProfileViaApplicationProperties() throws Exception { |
||||||
|
// gh-308
|
||||||
|
SpringApplication application = new SpringApplication(Config.class); |
||||||
|
|
||||||
|
application.setWebEnvironment(false); |
||||||
|
ConfigurableApplicationContext context = application.run( |
||||||
|
"--spring.config.name=enableprofileviaapplicationproperties", |
||||||
|
"--spring.profiles.active=dev"); |
||||||
|
assertThat(context.getEnvironment().acceptsProfiles("dev"), equalTo(true)); |
||||||
|
assertThat(context.getEnvironment().acceptsProfiles("a"), equalTo(true)); |
||||||
|
} |
||||||
|
|
||||||
|
@Configuration |
||||||
|
public static class Config { |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1 @@ |
|||||||
|
spring.profiles.active=specific |
||||||
Loading…
Reference in new issue