application.yml 627 B

1234567891011121314151617181920212223242526
  1. spring:
  2. profiles:
  3. active: test
  4. jpa:
  5. hibernate:
  6. ddl-auto: update
  7. database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
  8. show-sql: false
  9. open-in-view: false
  10. servlet:
  11. multipart:
  12. enabled: true
  13. file-size-threshold: 2KB
  14. max-request-size: 1000MB
  15. max-file-size: 1000MB
  16. logging:
  17. level:
  18. org.springframework.security:
  19. - debug
  20. - info
  21. org.springframework.web: error
  22. org.hibernate.SQL: debug
  23. org.hibernate.engine.QueryParameters: debug
  24. org.hibernate.engine.query.HQLQueryPlan: debug
  25. org.hibernate.type.descriptor.sql.BasicBinder: trace