1 Star 0 Fork 0

ADAMS9812/springcloud-config-public

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
kpf-provider-8001.yml 3.09 KB
一键复制 编辑 原始数据 按行查看 历史
yangshiwen 提交于 2021-05-25 10:24 . 【新增】配置文件
spring:
profiles:
# 只配置一个dev环境
active: dev
---
server:
max-http-header-size: 4048576
port: 8001
mybatis-plus:
# 给pojo包下的类起别名
type-aliases-package: com.kpf.springcloud.pojo
# 配置路径
config-location: classpath:mybatis/mybatis-config.xml
# 读取mapper文件的路径配置
mapper-locations: classpath:mybatis/mapper/*.xml
type-aliases-super-type: java.lang.Object
# 配置逻辑删除
global-config:
db-config:
id-type: auto
spring:
profiles: dev
application:
# 这个名字将会注册到eureka,就是服务名
name: kpf-provider-8001
# 配置数据源
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/knowledge_payment_forum?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useSSL=false
username: root
password: 123456
redis:
password: #####
database: 0
host: #####
port: 6379
jedis:
pool:
max-idle: 20
max-wait: 1000
max-active: 20
min-idle: 8
timeout: 1000
# Eureka的配置,服务注册到哪里
eureka:
client:
instance:
# 修改eureka上面的描述信息 【status】
instance-id: kpf-provider-8001
service-url:
# 这里指定eureka注册的是哪个
# defaultZone: http://localhost:7003/eureka/
# 集群的话,直接三个都发布出去就OK了
defaultZone: http://localhost:7001/eureka/
# info配置
info:
app.name : knowledge_payment_forum
company.name : yangshiwen
---
server:
max-http-header-size: 4048576
port: 8002
# mybatis-plus配置
mybatis-plus:
# 给pojo包下的类起别名
type-aliases-package: com.kpf.springcloud.pojo
# 配置路径
config-location: classpath:mybatis/mybatis-config.xml
# 读取mapper文件的路径配置
mapper-locations: classpath:mybatis/mapper/*.xml
type-aliases-super-type: java.lang.Object
# 配置逻辑删除
global-config:
db-config:
id-type: auto
spring:
profiles: qc
application:
# 这个名字将会注册到eureka,就是服务名
name: kpf-provider-8002
# 配置数据源
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/knowledge_payment_forum?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useSSL=false
username: root
password: 123456
redis:
password: #####
database: 0
host: ####
port: 6379
jedis:
pool:
max-idle: 20
max-wait: 1000
max-active: 20
min-idle: 8
timeout: 1000
# Eureka的配置,服务注册到哪里
eureka:
client:
instance:
# 修改eureka上面的描述信息 【status】
instance-id: kpf-provider-8002
service-url:
# 这里指定eureka注册的是哪个
# defaultZone: http://localhost:7002/eureka/
# 集群的话,直接三个都发布出去就OK了
defaultZone: http://localhost:7001/eureka/
# info配置
info:
app.name : knowledge_payment_forum
company.name : yangshiwen
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/adams9812/springcloud-config-public.git
[email protected]:adams9812/springcloud-config-public.git
adams9812
springcloud-config-public
springcloud-config-public
master

搜索帮助