Changes

Jump to navigation Jump to search
146 bytes added ,  14:29, 30 April 2022
m
Line 55: Line 55:  
Secure your web application or REST API: Spring Boot Starter Security
 
Secure your web application or REST API: Spring Boot Starter Security
   −
== Spring Boot Actuator ==
+
==Spring Boot Actuator==
 
Monitor and manage your application
 
Monitor and manage your application
   −
* beans: Complete list of Spring beans in your app
+
*beans: Complete list of Spring beans in your app
* health: Application health information
+
*health: Application health information
* metrics: Application metrics
+
*metrics: Application metrics
* mappings: Details around Requests Mappings
+
*mappings: Details around Requests Mappings
    
To enable Spring Boot actuator at pom.xml:<syntaxhighlight lang="xml">
 
To enable Spring Boot actuator at pom.xml:<syntaxhighlight lang="xml">
Line 75: Line 75:  
....
 
....
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
http://127.0.0.1:8080/actuator
 +
http://127.0.0.1:8080/actuator/health
 +
http://127.0.0.1:8080/actuator/health/{*path}
 +
http://127.0.0.1:8080/actuator/info
     

Navigation menu