12345678910111213141516171819 |
- # web服务端口号
- server.port=12128
- # log配置
- logging.level.root=info
- logging.level.com.nokia=debug
- # 正式环境数据源GP数据库配置
- spring.datasource.driver-class-name=org.postgresql.Driver
- spring.datasource.url=jdbc:postgresql://192.168.70.109:5432/sqmmt
- spring.datasource.username=sqmdb
- spring.datasource.password=sqmdb_1QAZ
- # 正式环境Redis配置
- spring.redis.host=192.168.70.125
- spring.redis.port=6379
- spring.redis.database=0
- spring.redis.password=Richr00t
- redis.timeoutSeconds=600
|