この JAX-RS メソッドを想定します。
@GET
@Path("/{id}")
@Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public Employee get(@PathParam("id") Long id) {
return myService.findbyId(id);
}
次の POJO を使用します。
@XmlRootElement
public class Employee {
Integer id;
String name; (getters;setters etc...)
}
@XmlRootElement(name="employee")
public class SepcialEmployee extends Employee {
Skill skill; (getters;setters etc...)
}
@XmlRootElement(name="employee")
public class Manager extends Employee {
String headOffice; (getters;setters etc...)
}
これは、RESTeasy/spring-MVC 統合でうまく機能します。そして、Web ブラウザーからメソッドを呼び出すと、ieに対して次の答えを得ることができます:
<employee Id="17">
<name>Marc</name>
<headOffice>accounting</headOffice>
</employee>
しかし、単体テストに RESTeasy Client Framework を使用すると、. クライアント プロキシが Employee Parent クラスのみを unmarsalles で生成し、子情報 (Manager.headOffice または SepcialEmployee.Skill) を失いました。私のJunitテストの抜粋の下:
public class Test {
@Path("empl")
public interface EmpProxy {
@GET
@Produces(MediaType.APPLICATION_XML)
Employee getEmployee(@ClientURI String uri);
}
private static TJWSEmbeddedSpringMVCServer server;
public static final String host = "http://localhost:8080/";
public static final int port = 8080;
private static EmpProxy proxy;
@BeforeClass
public static void setup() {
server = new TJWSEmbeddedSpringMVCServer("classpath:test-dispatcher-servlet.xml", port);
server.start();
RegisterBuiltin.register(ResteasyProviderFactory.getInstance());
ResteasyClient client = new ResteasyClientBuilder().build();
ResteasyWebTarget target = client.target(host);
proxy = target.proxy(EmpProxy.class);
}
@Test
public void test(){
String url = host+"/empl/17";
Employee employee = proxy.getEmployee(url);
System.out.println(employee);
}
}