Skip to content

Commit cd5336f

Browse files
committed
AUT-2038 Update Spring Boot to 3.4 and related changes
1 parent 5982229 commit cd5336f

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.3.9</version>
9+
<version>3.4.3</version>
1010
<relativePath/><!-- Lookup parent from repository. -->
1111
</parent>
1212

@@ -32,7 +32,6 @@
3232
<logstash-logback-encoder.version>8.0</logstash-logback-encoder.version>
3333
<bootstrap.version>4.5.3</bootstrap.version> <!-- TODO AUT-1499 update from 4.5.x to version 5.x.x -->
3434
<wiremock.version>3.12.0</wiremock.version>
35-
<logback.version>1.5.12</logback.version> <!-- TODO AUT-2145 Newer Logback version requires resolving "Invalid [pattern]" error regarding "#asLong{%property{PID}}" logback-spring.xml configuration and resolving https://logback.qos.ch/manual/filters.html#JaninoEventEvaluator -->
3635
</properties>
3736

3837
<dependencies><!-- Ordered by scope, groupId, artifactId. -->

src/main/resources/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ management:
44
probes:
55
enabled: true
66
show-details: always
7+
health:
8+
ssl:
9+
enabled: false
710
endpoints:
811
web:
912
exposure:

src/main/resources/logback-spring.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
{
5757
"log.level": "%level",
5858
"log.logger": "%logger",
59-
"process.pid": "#asLong{%property{PID}}",
59+
"process.pid": "#asLong{${PID}}",
6060
"process.thread.name": "%thread",
6161
"service.name": "${springAppName}",
6262
"service.type": "${log.service.type}"

src/test/resources/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ management:
44
probes:
55
enabled: true
66
show-details: always
7+
health:
8+
ssl:
9+
enabled: false
710
endpoints:
811
web:
912
exposure:

0 commit comments

Comments
 (0)