application-db.properties 1.05 KB
#---
# h2 数据库配置
spring.config.activate.on-profile=h2_db_config
# 数据库驱动
spring.datasource.driver-class-name=org.h2.Driver
# 数据库url连接字符串
# h2 v1.4.200 不支持 mvcc了去除
# spring.datasource.url=jdbc:h2:mem:core;DB_CLOSE_DELAY=1000;MVCC=TRUE;LOCK_TIMEOUT=10000
spring.datasource.url=jdbc:h2:mem:core;DB_CLOSE_DELAY=1000;LOCK_TIMEOUT=10000
spring.datasource.username=sa
spring.datasource.password=
#---
# mysql 数据库配置
spring.config.activate.on-profile=mysql_db_config
# 数据库url连接字符串
# serverTimezone参数解决数据库时区不一致的问题
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1/luban_h5?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=
#spring.datasource.url=jdbc:mysql://192.168.168.169/bsth-ebus_stop_board?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
#spring.datasource.username=root
#spring.datasource.password=root2jsp