Closes gh-6046
This commit is contained in:
Johnny Lim
2016-05-26 21:04:32 +09:00
committed by Stephane Nicoll
parent 6f5bd2e13a
commit 70adefc87b
14 changed files with 15 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
=== /autoconfig
This endpoint is a report on the Spring Boot auto-configuration process that happened when
your application started up. It lists all the `@Conditional` annotations that were
your application started up. It lists all the `@Conditional` annotations that were
evaluated as the context started and in each case it gives an indication of if (and why)
the condition matched. A positive match results in a bean being included in the context,
and a negative result means the opposite (the bean's class may not even be loaded).

View File

@@ -62,7 +62,7 @@ on the classpath by default) then the Actuator endpoint responses are enhanced w
hypermedia in the form of "links". The default media type for responses is
http://stateless.co/hal_specification.html[HAL], resulting in each resource having an
extra property called "_links". You can change the media type to another one supported by
Spring HATEOAS by providing your own `@EnableHypermedia` annotation and custom providers
Spring HATEOAS by providing your own `@EnableHypermedia` annotation and custom providers
as necessary.
Example enhanced "/metrics" endpoint with additional "_links":