mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-06 09:26:48 +08:00
23 lines
890 B
Properties
23 lines
890 B
Properties
# datasource config
|
|
# basic数据库
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
spring.jpa.open-in-view=false
|
|
spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true
|
|
|
|
spring.datasource.driverClassName=com.mysql.jdbc.Driver
|
|
# spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
|
|
# 当前数据库 basic 对应的数据库
|
|
spring.datasource.url=jdbc:mysql://124.70.92.162:3306/boe_base?useSSL=false&useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull
|
|
spring.datasource.username=boe_base
|
|
spring.datasource.password=k3DbtrcCkKAcFYzd
|
|
|
|
logging.level.org.hibernate.SQL=DEBUG
|
|
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
|
|
|
|
# 设置logback.xml位置
|
|
logging.config=classpath:log/logback-dev.xml
|
|
|
|
#加密盐
|
|
#jasypt.encryptor.password=jasypt
|
|
jasypt.encryptor.algorithm=PBEWithMD5AndDES
|
|
jasypt.encryptor.iv-generator-classname=org.jasypt.iv.NoIvGenerator |