Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
7c9b2afa
Commit
7c9b2afa
authored
Apr 10, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.4.x' into 1.5.x
parents
ec0cc0fe
3c286872
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
ServerProperties.java
...ingframework/boot/autoconfigure/web/ServerProperties.java
+1
-1
ServerPropertiesTests.java
...amework/boot/autoconfigure/web/ServerPropertiesTests.java
+19
-0
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java
View file @
7c9b2afa
...
...
@@ -834,7 +834,7 @@ public class ServerProperties
if
(
maxHttpHeaderSize
>
0
)
{
customizeMaxHttpHeaderSize
(
factory
,
maxHttpHeaderSize
);
}
if
(
this
.
maxHttpPostSize
>
0
)
{
if
(
this
.
maxHttpPostSize
!=
0
)
{
customizeMaxHttpPostSize
(
factory
,
this
.
maxHttpPostSize
);
}
if
(
this
.
accesslog
.
enabled
)
{
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java
View file @
7c9b2afa
...
...
@@ -574,6 +574,25 @@ public class ServerPropertiesTests {
}
}
@Test
public
void
customTomcatDisableMaxHttpPostSize
()
{
Map
<
String
,
String
>
map
=
new
HashMap
<
String
,
String
>();
map
.
put
(
"server.tomcat.max-http-post-size"
,
"-1"
);
bindProperties
(
map
);
TomcatEmbeddedServletContainerFactory
container
=
new
TomcatEmbeddedServletContainerFactory
(
0
);
this
.
properties
.
customize
(
container
);
TomcatEmbeddedServletContainer
embeddedContainer
=
(
TomcatEmbeddedServletContainer
)
container
.
getEmbeddedServletContainer
();
embeddedContainer
.
start
();
try
{
assertThat
(
embeddedContainer
.
getTomcat
().
getConnector
().
getMaxPostSize
())
.
isEqualTo
(-
1
);
}
finally
{
embeddedContainer
.
stop
();
}
}
@Test
@Deprecated
public
void
customTomcatMaxHttpPostSizeWithDeprecatedProperty
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment