1 Star 0 Fork 0

SaoTao/SpringCloud_Config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cloud_server_02.yml 2.92 KB
一键复制 编辑 原始数据 按行查看 历史
zst 提交于 2018-10-17 12:45 . server配置添加
spring:
profiles:
active:
- dev
---
server:
port: 1082
mybatis:
config-loction: classpath:mybatis/mybatis.cfg.xml
typs-aliases-package: com.tao.springcloud.pojo
mapper-locations: classpath:mybatis/mapper/StudentMapper.xml
spring:
profiles: dev
application:
name: demo-student-t
datasource:
type: com.alibaba.druid.pool.DruidDataSource # 当前数据源操作类型
driver-class-name: com.mysql.jdbc.Driver # mysql驱动包
url: jdbc:mysql://192.168.100.32:3306/saiku?characterEncoding=UTF-8 # 数据库名称
username: root
password: new-password
dbcp2:
min-idle: 5 # 数据库连接池的最小维持连接数
initial-size: 5 # 初始化连接数
max-total: 5 # 最大连接数
max-wait-millis: 200 # 等待连接获取的最大超时时间
jpa:
show-sql: true
eureka:
client:
service-url:
defaultZone: http://olywa01.com:2080/eureka/, http://olywa02.com:2082/eureka/, http://olywa03.com:2083/eureka/ #hostname中不能下划线
instance:
instance-id: demo_server_1082
prefer-ip-address: true
#配置info信息需要使用spring-boot-starter-actuator依赖
info:
app.name: demo_server_1082 //eureka页面中微服务列表显示:左侧一列为spring.appliction.name, 右侧则使用这个
company.name: com.tao.springcloud
build.artifactId: $project.artifactId$
build.version: $project.version$
---
server:
port: 1082
mybatis:
config-loction: classpath:mybatis/mybatis.cfg.xml
typs-aliases-package: com.tao.springcloud.pojo
mapper-locations: classpath:mybatis/mapper/StudentMapper.xml
spring:
profiles: test
application:
name: demo-student-t
datasource:
type: com.alibaba.druid.pool.DruidDataSource # 当前数据源操作类型
driver-class-name: com.mysql.jdbc.Driver # mysql驱动包
url: jdbc:mysql://192.168.100.32:3306/saiku?characterEncoding=UTF-8 # 数据库名称
username: root
password: new-password
dbcp2:
min-idle: 5 # 数据库连接池的最小维持连接数
initial-size: 5 # 初始化连接数
max-total: 5 # 最大连接数
max-wait-millis: 200 # 等待连接获取的最大超时时间
jpa:
show-sql: true
eureka:
client:
service-url:
defaultZone: http://olywa01.com:2080/eureka/, http://olywa02.com:2082/eureka/, http://olywa03.com:2083/eureka/ #hostname中不能下划线
instance:
instance-id: demo_server_1082
prefer-ip-address: true
#配置info信息需要使用spring-boot-starter-actuator依赖
info:
app.name: demo_server_1082 //eureka页面中微服务列表显示:左侧一列为spring.appliction.name, 右侧则使用这个
company.name: com.tao.springcloud
build.artifactId: $project.artifactId$
build.version: $project.version$
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/olywa/SpringCloud_Config.git
git@gitee.com:olywa/SpringCloud_Config.git
olywa
SpringCloud_Config
SpringCloud_Config
master

搜索帮助