We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3962f0d commit c2c86faCopy full SHA for c2c86fa
README.md
@@ -23,7 +23,9 @@ I used the following at http://start.spring.io to create the Eureka Server appli
23
24
Next in the class BootDemoEurekaServerApplication, I needed to add the following annotation to the class:
25
26
+```
27
@EnableEurekaServer
28
29
30
This enables a registry that other applications can talk to.
31
src/main/resources/application.properties
@@ -6,4 +6,9 @@ eureka.client.fetch-registry=false
6
logging.level.com.netflix.eureka=OFF
7
logging.level.com.netflix.discovery=OFF
8
9
-spring.application.name=eureka-server
+spring.application.name=eureka-server
10
+
11
+spring.jackson.serialization.indent_output=true
12
13
+management.endpoints.web.expose=*
14
+management.security.enabled=false
0 commit comments