Introduction Here we will see example on creating custom endpoints in Spring Boot Actuator. There are a number of endpoints provided by Spring Boot however we may want to create a custom endpoint using Spring Boot Actuator. We have seen few examples on Spring Boot actuators: Spring Boot Actuator Example Spring Boot Actuator – Accessing…

Posted in Spring Boot

Spring Boot Actuator – Creating Custom Endpoints

Introduction Here we will see example on securing HTTP endpoints in Spring Boot application. Like other sensitive URLs, you should take care to secure HTTP endpoints. If Spring Security is present, endpoints are secured by default using Spring Security’s content-negotiation strategy. If you wish to configure custom security for HTTP endpoints, for example, only allow…

Posted in Spring Boot Spring Security

Spring Boot Actuator – Securing HTTP Endpoints

Introduction This tutorial will show you how to access Endpoints via JMX in Spring Boot Actuator. As we know only /actuator/health and /actuator/info are accessible over HTTP protocol for security reasons. Therefore if you want to access other end points you have to access over JMX. JMX console comes with the JDK installation, so you…

Posted in Spring Boot

Spring Boot Actuator – Accessing Endpoints via JMX

Introduction Spring Boot Actuator that includes additional features to help you monitor and manage your application in production. You can monitor your application’s auditing, health, and metrics by using HTTP endpoints or with JMX. Spring Boot Actuator includes a number of built-in endpoints and lets you add your own. For example, the health endpoint provides…

Posted in Spring Boot

Spring Boot Actuator – Production Ready Features