Xia Kaixiang | d15331b | 2019-05-13 16:09:09 +0800 | [diff] [blame] | 1 | spring.main.banner-mode=off |
| 2 | # create and drop tables and sequences, loads import.sql |
| 3 | spring.jpa.hibernate.ddl-auto=update |
| 4 | spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect |
| 5 | spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false |
| 6 | # Postgresql settings |
| 7 | spring.datasource.platform=postgresql |
| 8 | spring.datasource.url=jdbc:postgresql://localhost:5432/payapi |
| 9 | spring.datasource.username=payapi |
| 10 | spring.datasource.password=123456 |
| 11 | database.dbtype=postgresql |
| 12 | # Redis settings |
| 13 | redis.server=localhost |
| 14 | redis.port=6379 |
| 15 | redis.password= |
| 16 | redis.database=0 |
| 17 | # jwt settings |
| 18 | jwt.secret=Zj5taLomEbrM0lk+NMQZbHfSxaDU1wekjT+kiC3YzDw= |
| 19 | # timeout seconds |
| 20 | jwt.expiration=3600 |
| 21 | # user password |
| 22 | auth.password.bcrypt.seed= |
Xia Kaixiang | 0d71479 | 2019-08-30 10:04:19 +0800 | [diff] [blame^] | 23 | spring.jackson.serialization.fail-on-empty-beans=false |
| 24 | |
| 25 | |
| 26 | payapi.url=https://yy.dlsmk.cn/payapi |
| 27 | |
| 28 | payapi.appid=200001 |
| 29 | |
| 30 | cron.offlinedtl=0/30 * * * * ? |
| 31 | payapi.logintime=0 0/20 * * * ? |