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 a288c72 commit 3123e1fCopy full SHA for 3123e1f
center/bus/src/main/resources/application.yml
@@ -5,6 +5,11 @@ spring:
5
username: ${RABBIT_MQ_USERNAME:guest}
6
password: ${RABBIT_MQ_PASSWORD:guest}
7
8
+management:
9
+ endpoints:
10
+ web:
11
+ exposure:
12
+ include: '*'
13
logging:
14
level:
15
root: info
center/pom.xml
@@ -17,6 +17,13 @@
17
<version>0.0.1-SNAPSHOT</version>
18
</parent>
19
20
+ <dependencies>
21
+ <dependency>
22
+ <groupId>org.springframework.boot</groupId>
23
+ <artifactId>spring-boot-starter-web</artifactId>
24
+ </dependency>
25
+ </dependencies>
26
+
27
<modules>
28
<module>bus</module>
29
</modules>
0 commit comments