mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-20 08:16:50 +08:00
34 lines
1.2 KiB
Properties
34 lines
1.2 KiB
Properties
## redis
|
||
spring.redis.database=2
|
||
spring.redis.host=127.0.0.1
|
||
spring.redis.password=ENC(zA5LNV8xw3yEx6LMwdGGBGgNsOaD3Cg+)
|
||
spring.redis.port=6379
|
||
|
||
## datasource config
|
||
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_base?useSSL=false&useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull
|
||
spring.datasource.username=boe_base
|
||
spring.datasource.password=ENC(MaC28GJw2JcbH8Lil0CrqSDTYxX49FJ0rxcmHH2pX0k=)
|
||
|
||
logging.level.org.hibernate.SQL=DEBUG
|
||
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
|
||
|
||
# 设置logback.xml位置
|
||
logging.config=classpath:log/logback-test.xml
|
||
|
||
## xboe config
|
||
xboe.api.cross_filter=true
|
||
|
||
## 上传相磁的路径配置
|
||
xboe.upload.file.temp_path=/www/wwwroot/file/temp
|
||
xboe.upload.file.save_path=/www/wwwroot/file/upload
|
||
xboe.upload.file.http_path=http://114.115.162.187/file/upload
|
||
|
||
## 新系统的内部地址,可以不通过nginx调用
|
||
xboe.inner.data.sync.baseurl=http://localhost:9090
|
||
|
||
#加密盐
|
||
#jasypt.encryptor.password=jasypt
|
||
jasypt.encryptor.algorithm=PBEWithMD5AndDES
|
||
jasypt.encryptor.iv-generator-classname=org.jasypt.iv.NoIvGenerator |