-
-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10911 from murdos/yaml-idempotency
fix(spring-yaml-properties): preserve order of an existing property when updating its value
- Loading branch information
Showing
3 changed files
with
64 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...test/resources/projects/project-with-spring-application-yaml/more-complex-application.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
spring: | ||
data: | ||
jpa: | ||
repositories: | ||
bootstrap-mode: deferred | ||
datasource: | ||
driver-class-name: org.postgresql.Driver | ||
hikari: | ||
auto-commit: false | ||
poolName: Hikari | ||
password: '' | ||
type: com.zaxxer.hikari.HikariDataSource | ||
url: jdbc:postgresql://localhost:5432/myapp | ||
username: myapp |