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.
146 lines
5.0 KiB
146 lines
5.0 KiB
server: |
|
port: 8762 #8761创新、8762广商、8763华厦、广州理工,华粤8762,广外8764,北师大(珠海)8762 |
|
spring: |
|
application: |
|
name: user-service |
|
datasource: |
|
name: druidDataSource |
|
type: com.alibaba.druid.pool.DruidDataSource |
|
druid: |
|
#添加allowMultiQueries=true 在批量更新时才不会出错 |
|
# url: jdbc:sqlserver://192.168.1.108:2012;DatabaseName=FSBG;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: sa |
|
# password: mh@803 |
|
## url: jdbc:sqlserver://120.25.220.177:32012;DatabaseName=M_CHWS;allowMultiQueries=true |
|
#阿里云服务器-广州理工 |
|
url: jdbc:sqlserver://111.230.50.186:32012;DatabaseName=CHWS;allowMultiQueries=true |
|
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
username: test |
|
password: minghan123456@ |
|
# #华厦云服务器 |
|
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=CHWS;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws |
|
# password: minghan123456@ |
|
#创新服务器 |
|
# url: jdbc:sqlserver://106.55.173.225:57238;DatabaseName=chws_chx;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_gsh |
|
# password: Mhtech@803 |
|
#广商服务器 |
|
# url: jdbc:sqlserver://175.178.153.91:8033;DatabaseName=chws_gsh;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_gsh |
|
# password: Mhtech@803gsh |
|
#本机 |
|
# url: jdbc:sqlserver://127.0.0.1:9956;DatabaseName=CHWS;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: sa |
|
# password: mh@803 |
|
#家里电脑 |
|
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=CHWS;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: sa |
|
# password: mh@803 |
|
#华粤服务器 |
|
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=chws_hy;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_hy |
|
# password: huayue@803 |
|
#广外本地服务器 |
|
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=chws_gw;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_gw |
|
# password: chws_gw@803 |
|
# url: jdbc:sqlserver://111.230.50.186:32012;DatabaseName=chws_gw;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_gw |
|
# password: chws_gw@803 |
|
|
|
# # 华软江门 |
|
# url: jdbc:sqlserver://127.0.0.1:57238;DatabaseName=chws_jm;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_jm |
|
# password: Mhtech@803 |
|
|
|
# # 珠海北师大 |
|
# url: jdbc:sqlserver://127.0.0.1:8033;DatabaseName=chws_bsdz;allowMultiQueries=true |
|
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver |
|
# username: chws_bsdz |
|
# password: Mhtech@803803 |
|
|
|
filters: stat,wall,config |
|
max-active: 100 |
|
initial-size: 1 |
|
max-wait: 60000 |
|
min-idle: 1 |
|
time-between-eviction-runs-millis: 60000 |
|
min-evictable-idle-time-millis: 300000 |
|
validation-query: select 'x' |
|
test-while-idle: true |
|
test-on-borrow: false |
|
test-on-return: false |
|
pool-prepared-statements: true |
|
max-open-prepared-statements: 50 |
|
max-pool-prepared-statement-per-connection-size: 50 |
|
cloud: |
|
config: |
|
fail-fast: false |
|
# 是否启用配置中心 |
|
enabled: ${SPRING_CLOUD_CONFIG_ENABLED:false} |
|
# # 配置中心地址 |
|
# uri: ${SPRING_CLOUD_CONFIG_URI:http://localhost:8763} |
|
# redis: |
|
# database: 0 |
|
# host: 127.0.0.1 |
|
# port: 6379 |
|
# password: 123456 |
|
# timeout: 3000 #链接超时时间 |
|
# lettuce: |
|
# pool: |
|
# max-active: 8 #连接池最大连接数(使用负值没有限制) |
|
# max-wait: -1 #最大等待时间,使用负值没有限制 |
|
# max-idle: 8 #最大空闲连接,使用负值没有限制 |
|
# min-idle: 0 #默认最小空闲连接 默认0 |
|
|
|
# redis配置 |
|
# cloud: |
|
# config: |
|
# uri: http://localhost:8769 |
|
# fail-fast: true |
|
# profiles: |
|
# active: pro |
|
# consul: |
|
# host: localhost |
|
# port: 8500 |
|
# discovery: |
|
# service-name: ${spring.application.name} |
|
# 开放健康检查接口 |
|
#management: |
|
# endpoints: |
|
# web: |
|
# exposure: |
|
# include: "*" |
|
# endpoint: |
|
# health: |
|
# show-details: ALWAYS |
|
#files: |
|
# path: ${file-path:d:/files} |
|
|
|
logging: |
|
level: |
|
com: |
|
mh: |
|
user: |
|
mapper: DEBUG |
|
file: |
|
max-size: 30 |
|
path: logs/${spring.application.name} |
|
|
|
##软件最后更新日期20230111 |
|
|
|
amap: |
|
key: 984603bf28ef94ac78765a3ea27a6c26 |
|
|
|
|
|
|