I want to run "mvn tomcat:run" from the command line, but how can I edit the server.xml to set maxHttpHeaderSize="65536" in the connectors? Or can I configure the connectors in the pom.xml?
Cheers
Nik
|
I want to run "mvn tomcat:run" from the command line, but how can I edit the server.xml to set maxHttpHeaderSize="65536" in the connectors? Or can I configure the connectors in the pom.xml? Cheers Nik
| |||
|
feedback
|
|
Unfortunately, after doing some research, I don't think there's a way to edit server.xml's connectors. Unless someone finds something, it seems like your best bet will be to move to the maven cargo plugin and ZIP up your own Tomcat installation with your custom
Or something of the sort... | |||
feedback
|
|
see http://docs.codehaus.org/display/CARGO/Custom+File+Configurations i think you can do it like this and place your custom server.xml in your project:
and use default cargo server.xml as a template to get property replacement:
| |||
|
feedback
|