英文:
Different File/Request size limit in in spring boot application for multipart APIs
问题
我已经在配置属性中设置了文件大小,并且它适用于所有的多部分 API。我的要求是允许特定的 API 上传较大的文件大小,但我不想在全局标签上进行设置。是否有办法让我在不同的 API 上指定不同的文件和请求大小限制?
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
英文:
I have set file size below config properties and It's applicable to all multipart APIs. My requirement is to allow a specific API to upload large file size which I don't want to set on global label. Is there any way that I can specify different file and request size limit on different APIs?
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
专注分享java语言的经验与见解,让所有开发者获益!
评论