运行Jetty Maven插件时如何使用MovedContextHandler?

时间:2013-12-06 19:30:32

标签: java maven jetty

我想在我在Maven构建中使用的嵌入式Jetty服务器中设置永久HTTP重定向。我正在使用Maven 3.0.4和jetty-maven-plugin版本9.0.6.v20130930。 Jetty documentation清楚地演示了如何在非嵌入式Jetty实例中进行设置,但是我无法弄清楚如何在Maven内部运行时进行设置。

这是我用来进行重定向的上下文XML文件:

<?xml version="1.0"  encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">

<Configure class="org.eclipse.jetty.server.handler.MovedContextHandler">
  <Set name="contextPath">/permanently-moved-feeds</Set>
  <Set name="newContextURL">/</Set>
  <Set name="permanent">true</Set>
  <Set name="discardPathInfo">false</Set>
  <Set name="discardQuery">false</Set> 
</Configure>

以下是相关的Maven pom.xml配置:

    <plugin>
        <groupId>org.eclipse.jetty</groupId>
        <artifactId>jetty-maven-plugin</artifactId>

        <configuration>
          <resourcesBases>src/main/webapp,src/main/webapp/test-feeds</resourcesBases>                 
        </configuration>
        <executions>
         <execution>
            <id>start-jetty</id>
            <phase>pre-integration-test</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <scanIntervalSeconds>10</scanIntervalSeconds>
              <daemon>true</daemon>
            </configuration>
          </execution>
          <execution>
            <id>stop-jetty</id>
            <phase>post-integration-test</phase>
            <goals>
              <goal>stop</goal>
            </goals>
          </execution>
        </executions>
    </plugin>    

所以我的具体问题是如何配置jetty-maven-plugin以便Jetty知道在第一个XML样本中哪里可以找到上下文XML文件?

0 个答案:

没有答案