Last active
November 11, 2022 16:50
-
-
Save migueldoctor/9523c1abdf30be8e43ae929f0b5ad1f8 to your computer and use it in GitHub Desktop.
Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server.port = 9080 | |
# kotlin logging -> Define the level of the log | |
logging.level.com.kesizo.demo.services.uploadfilesservice = DEBUG | |
#Configure Multipart File for Servlet | |
# Max file size | |
spring.servlet.multipart.max-file-size=1MB | |
# Max request size. | |
spring.servlet.multipart.max-request-size=10MB | |
# Whether to enable support of multipart uploads. | |
spring.servlet.multipart.enabled=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment