我想在 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 策略