Skip to content

Commit

Permalink
Bumped Spring Boot Version to 3.4.1, added Actuator Health Endpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksbrwsk committed Dec 19, 2024
1 parent 4caaaa4 commit 0591dec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>de.ksbrwsk</groupId>
Expand All @@ -30,6 +30,10 @@
</scm>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application-ssl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ server.port=8080
server.compression.enabled=true
server.http2.enabled=true
spring.thymeleaf.cache=false
management.endpoints.web.exposure.include=health
logging.level.org.springframework.web=INFO
1 change: 1 addition & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ server.port=8080
server.compression.enabled=true
server.http2.enabled=true
spring.thymeleaf.cache=false
management.endpoints.web.exposure.include=health
logging.level.org.springframework.web=INFO

0 comments on commit 0591dec

Please sign in to comment.