mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-09 10:56:50 +08:00
24 lines
886 B
Properties
24 lines
886 B
Properties
## redis
|
|
spring.redis.database=3
|
|
spring.redis.host=127.0.0.1
|
|
spring.redis.password=ENC(zA5LNV8xw3yEx6LMwdGGBGgNsOaD3Cg+)
|
|
spring.redis.port=6379
|
|
|
|
logging.level.org.hibernate.SQL=DEBUG
|
|
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
|
|
## datasource config
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
spring.datasource.driverClassName=com.mysql.jdbc.Driver
|
|
# spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
|
|
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/boe_old?useSSL=false&useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull
|
|
spring.datasource.username=root
|
|
spring.datasource.password=ENC(lAoFOYuc8CAypPtigTNLYg==)
|
|
|
|
# 设置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
|