BAEL-764 Automatic Property Expansion with Spring Boot (#2435)

* Create pom.xml

Initial import

* First submit

* Second submit

* Different Types of Bean Injection in Spring

* Different Types of Bean Injection in Spring

* Added spring-core-di into the main build

* Revert "Create pom.xml"

This reverts commit 1bdc5443125df19575605f41ab28c9e8b6c69a32.

* BAEL-764 Automatic Property Expansion with Spring Boot

* BAEL-764 Automatic Property Expansion with Spring Boot

* BAEL-764 Automatic Property Expansion with Spring Boot

* BAEL-764 Automatic Property Expansion with Spring Boot
Make executable jars for property-exp-default project and use mvn exec:java to run property-exp-default project

* BAEL-764 Automatic Property Expansion with Spring Boot
Rename modules as per code reivew

* BAEL-764 Automatic Property Expansion with Spring Boot
Updated README.md as per code review

* BAEL-764 Automatic Property Expansion with Spring Boot
Updated README.md as per code review

* BAEL-764 Automatic Property Expansion with Spring Boot
Updated README.md as per code review

* BAEL-764 Automatic Property Expansion with Spring Boot
Updated README.md as per code review
This commit is contained in:
Roman Seleznov 2017-08-14 14:12:29 +01:00 committed by adamd1985
parent 43357b0809
commit 8d9a7b0ecf
3 changed files with 19 additions and 3 deletions

View File

@ -1,2 +1,18 @@
## The Module Holds Sources for the Following Articles
- [Automatic Property Expansion with Spring Boot] (http://www.baeldung.com/property-expansion-spring-boot)
- [Automatic Property Expansion with Spring Boot](http://www.baeldung.com/property-expansion-spring-boot)
### Module property-exp-default-config
This module contains both a standard Maven Spring Boot build and the Gradle build which is Maven compatible.
In order to execute the Maven example, run the following command:
`mvn spring-boot:run`
To execute the Gradle example:
`gradle bootRun`
### Module property-exp-custom-config
This project is not using the standard Spring Boot parent and is configured manually. Run the following command:
`mvn exec:java`

View File

@ -9,7 +9,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>property-exp-custom</artifactId>
<artifactId>property-exp-custom-config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

View File

@ -11,7 +11,7 @@
</parent>
<groupId>com.baeldung</groupId>
<artifactId>property-exp-default</artifactId>
<artifactId>property-exp-default-config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>