Advertisement
Guest User

Untitled

a guest
Apr 4th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. #DATABASE
  2. spring.datasource.url=jdbc:postgresql://localhost/paicentraldb
  3. spring.datasource.username=postgres
  4. spring.datasource.password=admin
  5. server.compression.enabled=true
  6. server.compression.mime-types=application/json,application/xml,text/html,text/xml,text/plain
  7. spring.jpa.hibernate.ddl-auto=update
  8. spring.jpa.show-sql=true
  9.  
  10. #LOGGER
  11. logging.level.org.springframework.web=DEBUG
  12. logging.level.org.hibernate=ERROR
  13. logging.level.org.springframework.security=DEBUG
  14.  
  15. #JWT
  16. jwt.header=Authorization
  17. jwt.secret=mySecretKeyToEncrypt
  18. jwt.expiration=604800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement