An open API service indexing awesome lists of open source software.

https://github.com/robwin/spring-endpoint-demo

Spring Custom Actuator Endpoint demo
https://github.com/robwin/spring-endpoint-demo

Last synced: about 2 months ago
JSON representation

Spring Custom Actuator Endpoint demo

Awesome Lists containing this project

README

          

This demo shows that Spring Boot 2 custom actuator endpoints require the `-parameters` compiler option to work when compiled with Gradle.

The Spring Boot Gradle Plugin configures the compiler option automatically, but when you are a framework developer and don't use the Spring Boot Gradle
Plugin you have to add the option yourself.

The test fails, but when you uncomment `options.compilerArgs += ["-parameters"]` in the `build.gradle` file, the test is successful.