Skip to content

Commit 91855d0

Browse files
committed
export actuator endpoint
1 parent 2254e15 commit 91855d0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/productservice/productservice-provider/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@
121121
<artifactId>productservice-api</artifactId>
122122
<version>1.0.0-SNAPSHOT</version>
123123
</dependency>
124+
<dependency>
125+
<groupId>org.springframework.boot</groupId>
126+
<artifactId>spring-boot-starter-actuator</artifactId>
127+
</dependency>
124128

125129

126130
<!-- SDK/Starter需1.6.2及以上版本,并排掉sentinel-dubbo-adapter依赖 -->

src/productservice/productservice-provider/src/main/resources/application.properties

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
spring.application.name=productservice
2+
3+
management.endpoints.web.exposure.include=*
4+
25
#database
36
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
47
spring.datasource.url=jdbc:mysql://product-mysql:3306/product?characterEncoding=utf8&useSSL=false&serverTimezone=GMT
@@ -29,4 +32,4 @@ dubbo.application.qos-enable=true
2932
dubbo.application.qos-accept-foreign-ip=false
3033

3134
# tunning
32-
spring.mvc.servlet.load-on-startup=1
35+
spring.mvc.servlet.load-on-startup=1

0 commit comments

Comments
 (0)