JAVA-8356: split or move spring-boot-properties
This commit is contained in:
parent
5416fc95b2
commit
c55e569096
|
@ -7,4 +7,5 @@
|
||||||
|
|
||||||
- [How to Define a Map in YAML for a POJO?](https://www.baeldung.com/yaml-map-pojo)
|
- [How to Define a Map in YAML for a POJO?](https://www.baeldung.com/yaml-map-pojo)
|
||||||
- [Using application.yml vs application.properties in Spring Boot](https://www.baeldung.com/spring-boot-yaml-vs-properties)
|
- [Using application.yml vs application.properties in Spring Boot](https://www.baeldung.com/spring-boot-yaml-vs-properties)
|
||||||
- [Load Spring Boot Properties From a JSON File](https://www.baeldung.com/spring-boot-json-properties)
|
- [Load Spring Boot Properties From a JSON File](https://www.baeldung.com/spring-boot-json-properties)
|
||||||
|
- [IntelliJ – Cannot Resolve Spring Boot Configuration Properties Error](https://www.baeldung.com/intellij-resolve-spring-boot-configuration-properties)
|
|
@ -1,7 +1,7 @@
|
||||||
package com.baeldung.configuration.processor;
|
package com.baeldung.configuration.processor;
|
||||||
|
|
||||||
import org.springframework.boot.context.properties.*;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
import org.springframework.context.annotation.*;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
@ConfigurationProperties(prefix = "com.baeldung")
|
@ConfigurationProperties(prefix = "com.baeldung")
|
|
@ -1,7 +1,7 @@
|
||||||
package com.baeldung.configuration.processor;
|
package com.baeldung.configuration.processor;
|
||||||
|
|
||||||
import org.springframework.boot.*;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.*;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class DemoApplication {
|
public class DemoApplication {
|
|
@ -1,8 +1,8 @@
|
||||||
package com.baeldung.configuration.processor;
|
package com.baeldung.configuration.processor;
|
||||||
|
|
||||||
import org.springframework.boot.context.properties.*;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.context.annotation.*;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
import org.springframework.beans.factory.annotation.*;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
@ConfigurationProperties(prefix = "com.baeldung")
|
@ConfigurationProperties(prefix = "com.baeldung")
|
|
@ -1,7 +1,7 @@
|
||||||
package com.baeldung.configuration.processor;
|
package com.baeldung.configuration.processor;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.*;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.*;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
public class PropertyBeanInjection {
|
public class PropertyBeanInjection {
|
|
@ -1,11 +1,12 @@
|
||||||
package com.baeldung.configuration.processor;
|
package com.baeldung.configuration.processor;
|
||||||
|
|
||||||
import org.junit.jupiter.api.*;
|
import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.runner.*;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.*;
|
import org.junit.runner.RunWith;
|
||||||
import org.springframework.boot.test.context.*;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.test.context.*;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
import org.springframework.test.context.junit4.*;
|
import org.springframework.test.context.TestPropertySource;
|
||||||
|
import org.springframework.test.context.junit4.SpringRunner;
|
||||||
|
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
@TestPropertySource("/configuration-processor.properties")
|
@TestPropertySource("/configuration-processor.properties")
|
|
@ -9,6 +9,5 @@ This module contains articles about Properties in Spring Boot.
|
||||||
- [Properties with Spring and Spring Boot](https://www.baeldung.com/properties-with-spring) - checkout the `com.baeldung.properties` package for all scenarios of properties injection and usage
|
- [Properties with Spring and Spring Boot](https://www.baeldung.com/properties-with-spring) - checkout the `com.baeldung.properties` package for all scenarios of properties injection and usage
|
||||||
- [Spring YAML Configuration](https://www.baeldung.com/spring-yaml)
|
- [Spring YAML Configuration](https://www.baeldung.com/spring-yaml)
|
||||||
- [Add Build Properties to a Spring Boot Application](https://www.baeldung.com/spring-boot-build-properties)
|
- [Add Build Properties to a Spring Boot Application](https://www.baeldung.com/spring-boot-build-properties)
|
||||||
- [IntelliJ – Cannot Resolve Spring Boot Configuration Properties Error](https://www.baeldung.com/intellij-resolve-spring-boot-configuration-properties)
|
|
||||||
- [Spring YAML vs Properties](https://www.baeldung.com/spring-yaml-vs-properties)
|
- [Spring YAML vs Properties](https://www.baeldung.com/spring-yaml-vs-properties)
|
||||||
- More articles: [[more -->]](../spring-boot-properties-2)
|
- More articles: [[more -->]](../spring-boot-properties-2)
|
||||||
|
|
Loading…
Reference in New Issue