加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
user-dev.yml 694 Bytes
一键复制 编辑 原始数据 按行查看 历史
北鹤 提交于 2020-08-14 08:57 . update user-dev.yml.
server:
port: ${port:9091}
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/springcloud
username: root
password: root
application:
name: user-service
mybatis:
type-aliases-package: com.itheima.user.pojo
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka
instance:
# 更倾向使用ip地址而不是host名
prefer-ip-address: true
# 指定ip
ip-address: 127.0.0.1
# 续约间隔,默认30秒
lease-renewal-interval-in-seconds: 5
# 服务失效时间,默认90
lease-expiration-duration-in-seconds: 5
test:
name: zhangsan888
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化