You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
381 B
26 lines
381 B
server:
|
|
port: 2121
|
|
|
|
|
|
|
|
# 指定注册中心
|
|
eureka:
|
|
port: 1111
|
|
host: localhost
|
|
client:
|
|
serviceUrl:
|
|
defaultZone: http://${eureka.host}:${eureka.port}/eureka/
|
|
|
|
spring:
|
|
application:
|
|
# 指定服务名
|
|
name: easyopen-service
|
|
|
|
# 指定zookeeper
|
|
cloud:
|
|
zookeeper:
|
|
connect-string: localhost:2181
|
|
|
|
# 指定接口路径
|
|
easyopen:
|
|
prefix-path: /api
|
|
|