Turn from:
53140569
jboss7.x modifying Max-post-size
Baidu on the internet for a long time, are not 7.x changes in the way, their own use of dabbler English level in the official web search, have their own try, and finally found
First, the path to the XML file.
${jboss_home}>>>standalone>>>configuration>>>standalone.xml
When you find it, open it with your favorite editor.
Then Ctrl+f search: urn:jboss:domain:web:1.0
Finally, replace the original configuration information with the below and you're done.
<subsystem xmlns= "urn:jboss:domain:web:1.0" default-virtual-server= "Default-host" >
<connector name= "http" protocol= "http/1.1" scheme= "http" socket-binding= "http" max-post-size= "0"/>
<virtual-server enable-welcome-root= "true" Name= "Default-host" >
<alias name= "localhost"/>
<alias name= "example.com"/>
</virtual-server>
</subsystem>
1
2
3
4
5
6
7
---------------------
zhangyunhao108
Source: CSDN
Original: 53140569
Copyright NOTICE: This article is for bloggers original article, reprint please attach blog link!
About jboss7.x Modifying the amount of post transfer data (max-post-size)