33 lines
587 B
YAML
33 lines
587 B
YAML
spring:
|
|
application:
|
|
name: order-application
|
|
cloud:
|
|
sentinel:
|
|
transport:
|
|
port: 8719
|
|
dashboard: localhost:12088
|
|
metric:
|
|
charset: UTF-8
|
|
eager: false
|
|
|
|
# server
|
|
server:
|
|
port: 18088
|
|
servlet:
|
|
context-path: /order-api/
|
|
|
|
swagger:
|
|
enable: true # 暂时不去掉
|
|
title: 订单子系统
|
|
description: 订单子系统
|
|
version: 1.0.0
|
|
base-package: cn.iocoder.mall.order.application.controller
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: health,info,env,metrics,prometheus
|
|
metrics:
|
|
enabled: true
|