├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── java │ └── com │ │ └── github │ │ └── kingbbode │ │ └── custom │ │ └── yaml │ │ └── importer │ │ └── processor │ │ └── CustomYamlPropertiesEnvironmentPostProcessor.java └── resources │ └── META-INF │ └── spring.factories └── test ├── java └── com │ └── github │ └── kingbbode │ └── custom │ └── yaml │ └── importer │ └── processor │ ├── SpringBootTestApplication.java │ ├── Test1Properties.java │ ├── Test2Properties.java │ ├── Test3Properties.java │ ├── Test4Properties.java │ ├── Test5Properties.java │ ├── Test6Properties.java │ ├── Test7Properties.java │ ├── Test8Properties.java │ └── properties │ ├── DevPropertiesLoadTest.java │ ├── DevStubPropertiesLoadTest.java │ ├── LocalPropertiesLoadTest.java │ ├── RealStubPropertiesLoadTest.java │ └── StubPropertiesLoadTest.java └── resources ├── application.yml └── config ├── custom-test1.yml ├── custom-test2.yml ├── custom-test3.yml ├── custom-test4.yml ├── custom-test5.yml ├── custom-test6.yml ├── custom-test7.yml └── custom-test8.yml /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: 7cgptjtflIOzyHGs39iZJ8wTpO1h3GvYC -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'spring-boot-custom-yaml-importer' 2 | 3 | -------------------------------------------------------------------------------- /src/main/java/com/github/kingbbode/custom/yaml/importer/processor/CustomYamlPropertiesEnvironmentPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/main/java/com/github/kingbbode/custom/yaml/importer/processor/CustomYamlPropertiesEnvironmentPostProcessor.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/SpringBootTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/SpringBootTestApplication.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test1Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test1Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test2Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test2Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test3Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test3Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test4Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test4Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test5Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test5Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test6Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test6Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test7Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test7Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test8Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/Test8Properties.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/DevPropertiesLoadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/DevPropertiesLoadTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/DevStubPropertiesLoadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/DevStubPropertiesLoadTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/LocalPropertiesLoadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/LocalPropertiesLoadTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/RealStubPropertiesLoadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/RealStubPropertiesLoadTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/StubPropertiesLoadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/java/com/github/kingbbode/custom/yaml/importer/processor/properties/StubPropertiesLoadTest.java -------------------------------------------------------------------------------- /src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/application.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test1.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test2.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test3.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test4.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test5.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test6.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test7.yml -------------------------------------------------------------------------------- /src/test/resources/config/custom-test8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingbbode/spring-boot-custom-yaml-importer/HEAD/src/test/resources/config/custom-test8.yml --------------------------------------------------------------------------------