113k views
5 votes
How to Enable Disable Endpoints in Spring Boot Actuator

User Jkhines
by
7.8k points

1 Answer

5 votes

Final answer:

To enable or disable endpoints in Spring Boot Actuator, modify the application.properties file and set the appropriate properties.

Step-by-step explanation:

To enable or disable endpoints in Spring Boot Actuator, you can modify the application.properties file. To enable a specific endpoint, you can set the property management.endpoints.enabled-by-default to true and then set the property management.endpoint.[endpoint-name].enabled to true for each desired endpoint.

To disable a specific endpoint, set the latter property to false. For example, to enable the health endpoint, you would set the properties as follows:

User Phq
by
7.7k points