I would like to test in Eclipse the integration of Java rest server and a rest client. Both the hello-client and the hello-server projects depend on the same hello-model jar file (that contains POJOs).
The catch is that I would like to check out different versions of either the client or the server, be able to edit the code in eclipse and be able to debug the test - even if they depend on different versions of hello-model.
I tried to use the Maven shade plugin to rename the model package in the server:
hellopojo.model -> hellopojo.server.model
but it does not affect Eclipse (wrong Maven stage I suppose).
<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>
Here is the unit test code:
@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();
}
Related question on stackoverflow: Best Git strategy for testing different client and server versions
Complete Code: https://github.com/itaifrenkel/hellopojo/blob/master/hellopojo-test/src/test/java/hellopojo/test/HelloTest.java
eclipse:eclipsein client and server, and it updates the common-lib in eclipse)... – Andy Nov 25 '12 at 20:20