Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. spring.mvc.view.prefix: /
  2. spring.mvc.view.suffix: .jsp
  3.  
  4. #MySql DB configuration
  5. spring.datasource.url:jdbc:mysql://localhost/article_management?useSSL=false
  6. spring.datasource.username:root
  7. spring.datasource.password:
  8. spring.datasource.driver-class-name:com.mysql.jdbc.Driver
  9. spring.datasource.tomcat.max-wait=20000
  10. spring.datasource.tomcat.max-active=50
  11. spring.datasource.tomcat.max-idle=20
  12. spring.datasource.tomcat.min-idle=15
  13.  
  14. spring.jpa.hibernate.ddl-auto=create
  15.  
  16. spring.jpa.properties.hibernate.dialect:org.hibernate.dialect.MySQL5Dialect
  17. spring.jpa.properties.hibernate.id.new_generator_mappings = false
  18. spring.jpa.properties.hibernate.format_sql = true
  19.  
  20. logging.level.org.hibernate.SQL:debug
  21. logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
  22.  
  23. spring.messages.basename=validation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement