Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1.  
  2. ################## Profiles ################
  3. spring.profiles.active=dev
  4.  
  5. ################### Logging ################
  6. logging.level.org.springframework.web=debug
  7.  
  8.  
  9. ################### Security ################
  10. security.basic.enabled=false
  11.  
  12. ################### DataSource ################
  13. spring.datasource.url =jdbc:mysql://host/db
  14. spring.datasource.username=username
  15. spring.datasource.password=password
  16. spring.datasource.testWhileIdle = true
  17. spring.datasource.validationQuery=SELECT 1
  18. #spring.jpa.show-sql =true
  19. #spring.jpa.hibernate.ddl-auto =update
  20. spring.jpa.hibernate.naming-strategy =org.hibernate.cfg.DefaultNamingStrategy
  21. spring.jpa.properties.hibernate.dialect =org.hibernate.dialect.MySQL5Dialect
  22.  
  23. ################### Server ################
  24. server.compression.enabled=true
  25. server.compression.mime-types=application/json
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement