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.
|
|
|
#服务器端口
|
|
|
|
server:
|
|
|
|
port: 8800
|
|
|
|
|
|
|
|
#数据源配置
|
|
|
|
#spring:
|
|
|
|
# datasource:
|
|
|
|
# url: ${blade.datasource.prod.url}
|
|
|
|
# username: ${blade.datasource.prod.username}
|
|
|
|
# password: ${blade.datasource.prod.password}
|
|
|
|
|
|
|
|
spring:
|
|
|
|
#排除DruidDataSourceAutoConfigure
|
|
|
|
autoconfigure:
|
|
|
|
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
|
|
|
datasource:
|
|
|
|
dynamic:
|
|
|
|
druid:
|
|
|
|
proxy-filters:
|
|
|
|
- sqlLogInterceptor
|
|
|
|
#设置默认的数据源或者数据源组,默认值即为master
|
|
|
|
primary: master
|
|
|
|
datasource:
|
|
|
|
master:
|
|
|
|
url: ${blade.datasource.warehouse.master.url}
|
|
|
|
username: ${blade.datasource.warehouse.master.username}
|
|
|
|
password: ${blade.datasource.warehouse.master.password}
|
|
|
|
slave:
|
|
|
|
url: ${blade.datasource.warehouse.slave.url}
|
|
|
|
username: ${blade.datasource.warehouse.slave.username}
|
|
|
|
password: ${blade.datasource.warehouse.slave.password}
|