* Move articles from spring-core-6 module to other spring-boot modules * JAVA-19559 Move articles from spring-core-6 module to other spring-boot-3 modules * JAVA-19559 Minor spacing change * JAVA-19559 Revert Minor spacing change
34 lines
1.2 KiB
Properties
34 lines
1.2 KiB
Properties
application.servers[0].ip=127.0.0.1
|
|
application.servers[0].path=/path1
|
|
application.servers[1].ip=127.0.0.2
|
|
application.servers[1].path=/path2
|
|
application.servers[2].ip=127.0.0.3
|
|
application.servers[2].path=/path3
|
|
spring.datasource.url=jdbc:h2:dev
|
|
spring.datasource.username=SA
|
|
spring.datasource.password=password
|
|
app.name=MyApp
|
|
app.description=${app.name} is a Spring Boot application
|
|
logging.file.name=myapplication.log
|
|
bael.property=defaultValue
|
|
bael.otherProperty=defaultOtherValue
|
|
#---
|
|
spring.config.activate.on-profile=multidocument-dev
|
|
spring.datasource.password=password
|
|
spring.datasource.url=jdbc:h2:dev
|
|
spring.datasource.username=SA
|
|
bael.property=devValue
|
|
#---
|
|
spring.config.activate.on-profile=multidocument-integration-extension
|
|
bael.otherProperty=integrationExtensionOtherValue
|
|
#---
|
|
spring.config.activate.on-profile=multidocument-prod
|
|
spring.datasource.password=password
|
|
spring.datasource.url=jdbc:h2:prod
|
|
spring.datasource.username=prodUser
|
|
bael.property=prodValue
|
|
#---
|
|
environment.name=${OS}
|
|
java.home.and.environment=${JAVA_HOME}+${OS}
|
|
not.existing.system.property=${thispropertydoesnotexist}
|
|
baeldung.presentation=${HELLO_BAELDUNG}. Java is installed in the folder: ${JAVA_HOME} |