Version: 1.5.1-Release In ServerProperties#customizeTomcat() (see: spring-boot-autoconfigure-1.5.1.RELEASE-sources.jar!/org/springframework/boot/autoconfigure/web/ServerProperties.java:837) the statement if (this.maxHttpPostSize > 0) { c...
1.创建一个空的Maven工程 添加如图三个部分: 1.<parent>表示依赖springboot-parent模块,进行对springboot相关依赖的版本管理 2.添加starter-web的依赖,表示需要创建一个springboot-web服务(默认使用Tomcat) 3.springboo-plugin是用来将该maven工程打包成springboot类型的可执行的jar包 2.创建Main类 3.大功告成,启动...