我想爲引導提供的tomcat設置maxSwallowSize屬性。 我application.properties有這樣一行:使用spring引導應用程序屬性設置tomcat屬性
server.context-parameters.maxSwallowSize=20971520
不出於某種原因。其他屬性,如server.port很好。 在TomcatEmbeddedServletContainerFactory中調試創建我看到有一個ServletContexInitializer(InitParameterConfiguringServletContextInitializer)具有此屬性,但它似乎沒有以任何方式使用。 (儘管這是一個變量名initializersToUse,諷刺; P)
當上載超過最大尺寸由
multipart.max-request-size=10MB
multipart.max-file-size=2MB
設置我不喜歡一個連接的擊殺這是正確的方式設置這個屬性?在調試期間,我可以看到IdentityInputFilter的默認值爲2MB。
最新org.springframework.boot的版本:彈簧引導起動的web