application.yaml 576 Bytes
Newer Older
1
spring:
2 3
  application:
    name: product-application
sin's avatar
sin committed
4 5 6 7 8 9 10 11
  cloud:
    sentinel:
      transport:
        port: 8719
        dashboard: localhost:12088
      metric:
        charset: UTF-8
      eager: false
12

13 14
# server
server:
15 16
  port: 18081
  servlet:
17 18
    context-path: /product-api/

19 20 21 22 23 24 25 26 27


management:
  endpoints:
    web:
      exposure:
        include: health,info,env,metrics,prometheus
    metrics:
      enabled: true
岳鹏磊's avatar
岳鹏磊 committed
28 29 30 31 32 33 34

swagger:
  enable: true
  title: 商品子系统
  description: 商品子系统
  version: 1.0.0
  base-package: cn.iocoder.mall.product.application.controller