我有一个相对简单的 RESTful Web 服务,它使用 Jersey 和 Eclipselink MOXy。
如果数据格式为 XML,我可以向服务发送请求,但如果我将其作为 JSON 发送,服务器会生成 HTTP 400(错误请求),并显示以下消息:“客户端发送的请求在语法上不正确。 ”。
服务端如下所示:
@POST
@Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
public Subscription post(Subscription Subscription) {
return Subscriptions.addSubscription(Subscription);
}
如果我在这样的网页中从 Javascript 发送 XML 数据,就没有问题:
$.ajax({
url: 'http://localhost:8080/MyService/subscription',
type: 'POST',
data: "<subscription><notificationType>EMAIL</notificationType><notificationAddress>test@example.com</notificationAddress></subscription>",
headers: {
Accept : "application/xml",
"Content-Type": "application/xml"
},
// .. other params ...
);
但是,使用等效的 JSON,我得到 HTTP 400 - Bad Request:
$.ajax({
url: 'http://localhost:8080/MyService/subscription',
type: 'POST',
data: JSON.stringify(
{subscription:{notificationType:"EMAIL",notificationAddress:"test@example.com"}}
),
dataType: 'json'
headers: {
Accept : "application/json",
"Content-Type": "application/json"
}
// .. other params ...
);
我已经使用 Fiddler 检查了请求,数据格式和标题看起来都正确。
有趣的是,如果我将它插入到这段代码中,我可以成功地解组完全相同的 JSON 字符串:
String json = "{\"subscription\":{\"notificationType\":\"EMAIL\",\"notificationAddress\":\"test@example.com\"}}";
JAXBContext context = JAXBContext.newInstance(Subscription.class);
Unmarshaller m = context.createUnmarshaller();
m.setProperty("eclipselink.media-type", "application/json");
StringReader sr = new StringReader(json);
Subscription sub = (Subscription)m.unmarshal(sr);
System.out.println(sub.toString());
订阅类定义为:
@XmlRootElement(name="subscription")
public class Subscription {
public enum NotificationType { EMAIL, SMS };
private String notificationAddress;
private NotificationType notificationType;
public String getNotificationAddress() {
return notificationAddress;
}
public void setNotificationAddress(String notificationAddress) {
this.notificationAddress = notificationAddress;
}
public NotificationType getNotificationType() {
return notificationType;
}
public void setNotificationType(NotificationType notificationType) {
this.notificationType = notificationType;
}
public Subscription() {
}
@Override
public String toString() {
String s = "Subscription";
if (getNotificationAddress() != null) {
s += "(" + getNotificationType().toString() + ":" + getNotificationAddress() + ")";
}
return s;
}
}
通过将此行添加到包含我的订阅者类的包中的 jaxb.properties,我已将 Eclipselink MOXy 配置为我的 JAXB 提供程序:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
这似乎有效,至少对于编组从服务中发出的对象而言。
我错过了什么?
编辑:这是 Fiddler 在我发布 JSON 数据时捕获的内容:
POST http://localhost:8080/MyService/subscription HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Content-Length: 86
Accept: application/json
Origin: http://localhost:8080
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
Content-Type: application/json
Referer: http://localhost:8080/TestPage/AddSubscription.html
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-GB,en-US;q=0.8,en;q=0.6
{"subscription":{"notificationType":"EMAIL","notificationAddress":"test@example.com"}}
更新:
我从下面 Blaise 的回答中选择了 Option#2,创建了一个应用程序派生类,因此:
import java.util.*;
import javax.ws.rs.core.Application;
import org.eclipse.persistence.jaxb.rs.MOXyJsonProvider;
public class MyApplication extends Application {
@Override
public Set<Class<?>> getClasses() {
HashSet<Class<?>> set = new HashSet<Class<?>>(2);
set.add(MOXyJsonProvider.class);
set.add(SubscriptionResource.class); // the class containing my @POST service method.
return set;
}
}
并添加到 web.xml:
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.example.MyApplication</param-value>
现在我没有得到 HTTP 400,并且我的服务中的代码被命中,这是以前没有的,但是传入的 Subscription 对象具有所有未初始化的字段,例如 notificationAddress 为空。如果我使用 XML 发布,它仍然可以正常工作。
更新#2:
我已将我的代码缩减为演示问题的最小子集,您可以在此处获取:
https://www.dropbox.com/sh/2a6iqw65ey0ahrk/D2ILi_722z
上面的链接包含一个带有 2 个 Eclipse 项目的 .zip;TestService(接受订阅对象的 Jersey RESTful 服务)和 TestPage(带有一些 JavaScript 的 .html 页面,用于以 JSON 或 XML 形式发布订阅对象)。
如果您在服务的 post 方法中放置断点,并使用测试页面发送 JSON 请求,您将看到传入了一个未初始化的订阅对象。