mirror of https://gitee.com/xiaonuobase/snowy
22 lines
777 B
YAML
22 lines
777 B
YAML
# Mysql数据库
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/xiaonuo-vue?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT&nullCatalogMeansCurrent=true
|
|
username: root
|
|
password: 123456
|
|
# 连接池大小根据实际情况调整
|
|
max-active: 20
|
|
max-pool-prepared-statement-per-connection-size: 20
|
|
|
|
# Oracle数据库
|
|
#spring:
|
|
# datasource:
|
|
# driver-class-name: oracle.jdbc.OracleDriver
|
|
# url: jdbc:oracle:thin:@localhost:1521:orcl
|
|
# username: XIAONUO-VUE-PUB-ORACLE
|
|
# password: 123456
|
|
# # 连接池大小根据实际情况调整
|
|
# max-active: 20
|
|
# max-pool-prepared-statement-per-connection-size: 20
|