Advertisement
maifeeulasad

application.properties - spring boot test

Sep 24th, 2019
3,419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1.  
  2.  
  3. # H2
  4. spring.h2.console.enabled=true
  5. spring.h2.console.path=/h2
  6. #http://localhost:8080/h2/
  7.  
  8.  
  9. # Datasource
  10. spring.datasource.url=jdbc:h2:file:~/spring-boot-h2-db
  11. spring.datasource.driver-class-name=org.h2.Driver
  12. spring.jpa.hibernate.ddl-auto=create-drop
  13. #spring.jpa.hibernate.ddl-auto=update
  14. spring.datasource.username=sa
  15. spring.datasource.password=
  16.  
  17.  
  18. #File
  19. spring.servlet.multipart.enabled=true
  20. spring.servlet.multipart.file-size-threshold=2KB
  21. spring.servlet.multipart.max-file-size=200MB
  22. spring.servlet.multipart.max-request-size=215MB
  23. file.upload-dir=/cse616-files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement