Health Check URL

Hi,

Previously in Cuba platform, we had a health check url

  • http://localhost:8080/app-core/remoting/health

do we have a similar url in JMIX?

Thanks,

Use Spring Boot Actuator.

  • Add to build.gradle:

    dependencies {
        implementation 'org.springframework.boot:spring-boot-starter-actuator'
    
    
  • The health check endpoint will be available at /actuator/health, e.g. http://localhost:8080/actuator/health

There is a lot of information about Actuator features on the internet.