Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # H2
- spring.h2.console.enabled=true
- spring.h2.console.path=/h2
- #http://localhost:8080/h2/
- # Datasource
- spring.datasource.url=jdbc:h2:file:~/spring-boot-h2-db
- spring.datasource.driver-class-name=org.h2.Driver
- spring.jpa.hibernate.ddl-auto=create-drop
- #spring.jpa.hibernate.ddl-auto=update
- spring.datasource.username=sa
- spring.datasource.password=
- #File
- spring.servlet.multipart.enabled=true
- spring.servlet.multipart.file-size-threshold=2KB
- spring.servlet.multipart.max-file-size=200MB
- spring.servlet.multipart.max-request-size=215MB
- file.upload-dir=/cse616-files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement