加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config-dept.yml 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
卢泽华 提交于 2020-10-03 19:13 . third commit
spring:
profiles:
active: dev
---
server:
port: 8081
mybatis:
type-aliases-package: nuc.ss.springcloud.pojo
config-location: classpath:mybatis/mybatis-config.xml
mapper-locations: classpath:mybatis/mapper/*.xml
spring:
profiles: dev
application:
name: springcloud-config-dept
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: org.gjt.mm.mysql.Driver
url: jdbc:mysql://localhost:3306/db01?characterEncoding=utf-8&useUnicode=true
username: root
password: admin
eureka:
client:
service-url:
defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
instance:
instance-id: springcloud-provider-dept-8081
info:
app.name: lzh-springcloud
company.name: com.lzh
---
server:
port: 8081
mybatis:
type-aliases-package: nuc.ss.springcloud.pojo
config-location: classpath:mybatis/mybatis-config.xml
mapper-locations: classpath:mybatis/mapper/*.xml
spring:
profiles: test
application:
name: springcloud-config-dept
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: org.gjt.mm.mysql.Driver
url: jdbc:mysql://localhost:3306/db02?characterEncoding=utf-8&useUnicode=true
username: root
password: admin
eureka:
client:
service-url:
defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
instance:
instance-id: springcloud-provider-dept-8081
info:
app.name: lzh-springcloud
company.name: com.lzh
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化