Maven cargo jetty6x:是否可以提供额外的Jetty配置?

时间:2012-02-14 09:36:40

标签: maven jetty cargo

我使用带有jetty6x的maven货运插件启动了应用程序。我对某些请求获得了HTTP/1.1 413 FULL head。我发现,我需要指定更大的headerBufferSize(由于请求标头大小很大)。有没有办法将其提供给货物配置?

我的货物配置:

<plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.1.2</version>
    <configuration>
        <contextPath>/${jetty.admin.context}</contextPath>
        <container>
            <containerId>jetty6x</containerId>
            <type>embedded</type>
        </container>
        <configuration>
            <properties>
                <cargo.servlet.port>${jetty.port}</cargo.servlet.port>
            </properties>
            <deployables>
                <deployable>
                    <properties>
                        <context>/http</context>
                    </properties>
                    <groupId>xxx.xxx.server</groupId>
                    <artifactId>http</artifactId>
                    <type>war</type>
                </deployable>
            </deployables>
        </configuration>
        <wait>false</wait>
    </configuration>
    <executions>
        <execution>
            <id>start-container</id>
            <phase>pre-integration-test</phase>
            <goals>
                <goal>start</goal>
            </goals>
        </execution>
        <execution>
            <id>stop-container</id>
            <phase>post-integration-test</phase>
            <goals>
                <goal>stop</goal>
            </goals>
        </execution>
    </executions>
</plugin>

1 个答案:

答案 0 :(得分:1)

您想要指定其他配置文件及其下的目录

<configuration><configfiles>...

在货物插件的配置

请参阅this postcargo site