3

我想在 Eclipse 中测试 Java 休息服务器和休息客户端的集成。hello-client 和 hello-server 项目都依赖于同一个 hello-model jar 文件(包含 POJO)。

问题是我想检查客户端或服务器的不同版本,能够在 eclipse 中编辑代码并能够调试测试——即使它们依赖于不同版本的 hello-model。

我尝试使用 Maven shade 插件来重命名服务器中的模型包:

hellopojo.model -> hellopojo.server.model

但它不会影响 Eclipse(我想是错误的 Maven 阶段)。

<build>
<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>2.0</version>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>shade</goal>
        </goals>
        <configuration>
          <relocations>
            <relocation>
              <pattern>hellopojo.model</pattern>
              <shadedPattern>hellopojo.server.model</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </execution>
    </executions>
  </plugin>
</plugins>
</build>

下面是单元测试代码:

@Parameters({"port"})
@BeforeClass
public static void startWebapp(
@Optional("8081") int port) throws Exception {

    restUri = "http://localhost:"+port+"/rest";
    client = new HelloClient(new URI(restUri));

    server = new Server(port);
    server.setHandler(createWebAppContext());
    server.start();
}


private static ServletContextHandler createWebAppContext() {
    ServletContextHandler handler = new ServletContextHandler(ServletContextHandler.SESSIONS);
    handler.setContextPath("/");
    ServletHolder servlet = new ServletHolder(new ServletContainer());
    servlet.setInitParameter(
        "com.sun.jersey.config.property.packages", 
        HelloResource.class.getPackage().getName());
    servlet.setInitParameter(
        "com.sun.jersey.api.json.POJOMappingFeature" ,
        "true");
    handler.addServlet(servlet, "/rest/*");
    return handler;
}

@AfterClass
public static void stopWebapp() throws Exception {
    server.stop();
}

关于 stackoverflow 的相关问题: 测试不同客户端和服务器版本的最佳 Git 策略

完整代码: https ://github.com/itaifrenkel/hellopojo/blob/master/hellopojo-test/src/test/java/hellopojo/test/HelloTest.java

4

1 回答 1

3

我们使用 Maven 项目的 dependencyManagement 概念来处理这个问题。

第 1 步 - 在客户端和服务器项目的父 pom 中声明dependencyManagement。

第 2 步 - 在客户端和服务器项目的依赖项部分覆盖版本信息。

这可能会帮助您通过测试范围类路径。我不确定它会对编译范围类路径做什么。

于 2012-11-26T05:26:21.010 回答