Xia Kaixiang | d15331b | 2019-05-13 16:09:09 +0800 | [diff] [blame^] | 1 | spring.main.banner-mode=off |
| 2 | |
| 3 | # create and drop tables and sequences, loads import.sql |
| 4 | spring.jpa.hibernate.ddl-auto=update |
| 5 | |
| 6 | # Oracle settings |
| 7 | spring.datasource.platform=oracle |
| 8 | spring.datasource.url=jdbc:oracle:thin:@172.28.201.101:47922:orcl |
| 9 | spring.datasource.username=dlpay |
| 10 | spring.datasource.password=kingstar |
| 11 | spring.datasource.driver-class-oracle.jdbc.driver.OracleDriver |
| 12 | |
| 13 | # Redis settings |
| 14 | redis.server=172.28.201.101 |
| 15 | redis.port=16379 |
| 16 | redis.password=kingstar |
| 17 | redis.database=0 |
| 18 | |
| 19 | # jwt settings |
| 20 | jwt.secret=Zj5taLomEbrM0lk+NMQZbHfSxaDU1wekjT+kiC3YzDw= |
| 21 | # timeout seconds |
| 22 | jwt.expiration=3600 |
| 23 | # user password |
| 24 | auth.password.bcrypt.seed= |