application-develop.properties 563 B

123456789101112131415161718
  1. # web服务端口号
  2. server.port=12128
  3. # log配置
  4. logging.level.root=info
  5. logging.level.com.nokia=debug
  6. # 开发环境数据库配置
  7. spring.datasource.driver-class-name=org.postgresql.Driver
  8. spring.datasource.url=jdbc:postgresql://127.0.0.1:5432/postgres
  9. spring.datasource.username=postgres
  10. spring.datasource.password=fantuan1985
  11. # 开发环境redis配置 由于测试环境redis尚不具备,暂时先用正式环境的 10 顶替一下,具备后再调整
  12. spring.redis.host=127.0.0.1
  13. spring.redis.port=6379
  14. spring.redis.database=0
  15. redis.timeoutSeconds=600