我已经使用Java / Jersey编写了一个基本的RESTful服务来管理订阅者,现在我正在尝试创建一个与此服务进行通信的客户端,但是我遇到了运行时错误,我不明白。这是一个展示问题的修剪版本:
订阅者类:
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Subscriber {
private String firstName;
private String lastName;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Subscriber() {
}
}
主要测试应用:
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.UriBuilder;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;
public class MyTestClient {
public static void main(String[] args) {
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(UriBuilder.fromUri("http://localhost:8080/MyService").build());
Subscriber s = new Subscriber() {{
setFirstName("John");
setLastName("Doe");
}};
System.out.println(service.path("subscriber")
.type(MediaType.APPLICATION_XML)
.entity(s)
.post(String.class));
}
}
我收到了这个错误:
Exception in thread "main" com.sun.jersey.api.client.ClientHandlerException: com.sun.jersey.api.client.ClientHandlerException: A message body writer for Java type, class MyTestClient$1, and MIME media type, application/xml, was not found
我不清楚这个错误信息的确切含义;它似乎与订阅者转换为XML有关(虽然,对我来说,错误消息暗示它正在尝试转换MyTestClient,这可能是正确的......)我在同一个订阅者类中使用了我的服务,创建XML发送给客户端没有问题,所以我很困惑。
如果我用包含XML的字符串替换Subscriber对象,我没有收到错误消息,但出于多种原因我想使用对象。
此错误消息的原因是什么,我该如何解决?
修改 作为参考,虽然我不确定它是否相关,但这里是代码服务方面的相关部分:
@POST
@Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
public Subscriber post(Subscriber subscriber) {
/// doesn't get here
}
此外,这可以,但不使用订阅者对象:
String xml = "<subscriber><firstName>John</firstName><lastName>Doe</lastName></subscriber>";
System.out.println(service.path("subscriber")
.type(MediaType.APPLICATION_XML)
.entity(xml)
.post(String.class));
更新 我可以通过首先将我的对象显式转换为字符串来解决这个问题,因此:
JAXBContext context = JAXBContext.newInstance(Subscriber.class);
Marshaller m = context.createMarshaller();
StringWriter sw = new StringWriter();
m.marshal(s, sw);
String xml = sw.toString();
System.out.println(service.path("subscriber")
.type(MediaType.APPLICATION_XML)
.entity(xml)
.post(String.class));
但是这很混乱,我不明白为什么它应该是必要的。
答案 0 :(得分:1)
错误“Java类型的消息正文编写器,类MyTestClient $ 1”报告它正在尝试编组匿名内部类。我们通常希望看到“类订阅者”。在执行此新订阅服务器(){{}}时,您可能正在丢失JAXB注释。
我的第一个建议是将名称传递给一个更干净的构造函数,而不是让你松开JAXB注释。
Subscriber s = new Subscriber("John","Doe");
或者调用默认构造函数,然后设置字段:
Subscriber s = new Subscriber();
s.setFirstName("John");
s.setLastName("Doe");
如果需要定义匿名内部类,则可以尝试在新的匿名类定义之前重新注释@XmlRootElement。 (从未尝试过,所以你的里程可能会有所不同:)
答案 1 :(得分:0)
可能存在两个问题:
确保在处理此请求的REST Web服务方法之上设置了使用注释:@Consumes(MediaType.APPLICATION_XML)
其次你的bean似乎缺少getter上的注释。这是你的udpated bean:
@XmlRootElement 公共类订阅者{
private String firstName;
private String lastName;
@XmlElement (name = "firstName")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
@XmlElement (name = "lastName")
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Subscriber() {
}
}