Localhost access: 8080 / endpoint actuator (with spring drive)

In spring docs, I read about an endpoint named "actuator", which is provided by the dependency of the actuator, but I donโ€™t know, t managed to access it in my local testing application.

Question: Does anyone know how to access this endpoint? rude if possible :)
Subquery 1: If this endpoint exists, then why is it hidden?
Subquery 2: If this endpoint does not exist, how can we notify spring.io to fix the documentation page (open some ticket)?

Details:

  • I want to access the "actuator" endpoint, not the other endpoints provided by the spring boot drive (localhost: 8080 / actuator).
  • Yes, I tried to manually enable this endpoint in the properties file (endpoints.enabled = true OR endpoints.actuator.enabled = true)
  • Yes, I tried to enable / disable the endpoints.sencitive property
  • Yes, other drive endpoints are working fine.
  • There is no particular reason why I need it, I just want to try it (just studying new material :))
  • Please do not just answer โ€œthere is no such end user dude!โ€, There must be some reason why it is written in docs
  • , spring, , " " (spring : 1.5.4.RELEASE)
  • :)
0
1

Spring Hateoas, /actuator

<dependency>
    <groupId>org.springframework.hateoas</groupId>
    <artifactId>spring-hateoas</artifactId>
</dependency>

docs:

" " . , Spring HATEOAS .

+1

Source: https://habr.com/ru/post/1629642/


All Articles