Advertisement
Guest User

Untitled

a guest
Jul 11th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. server.port=8080
  2. spring.main.allow-bean-definition-overriding=true
  3. management.endpoints.web.exposure.include=*
  4.  
  5. spring.datasource.url=jdbc:postgresql://localhost:5432/terawarehouse
  6. spring.datasource.username=kerri
  7. spring.datasource.password=kerri
  8. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL9Dialect
  9. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
  10.  
  11. spring.jpa.hibernate.ddl-auto=create
  12.  
  13. spring.liquibase.change-log=classpath:db/changelog/db.changelog-rebuild.xml
  14.  
  15. logging.level.org.springframework=OFF
  16. logging.level.root=OFF
  17. #logging.level.com.terawarehouse=debug
  18. #logging.level.com.broodcamp=debug
  19.  
  20. spring.main.banner-mode=off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement