Increase HTTP Post maxPostSize in Spring Boot

后端 未结 14 2175
无人共我
无人共我 2020-11-28 06:48

I\'ve got a fairly simple Spring Boot web application, I have a single HTML page with a form with enctype=\"multipart/form-data\". I\'m getting this error:

14条回答
  •  离开以前
    2020-11-28 07:32

    For me this worked in yaml

    spring:
        profiles: ....
        application:
            name:"...."
        http:
            multipart:
                max-file-size: 2147483648
                max-request-size: 2147483648
    

提交回复
热议问题