我喜欢用 xml 和 json 输入和输出构建一个休息服务。xml 输出应该有效并使用命名空间在 xsd 模式中定义。使用 xml 服务运行良好。对于 json,我还没有找到实现一致输入和输出的解决方案。为了说明我的问题,我做了一个小例子。我创建了两个带有 jaxb 注释 Parent 和 Child 的类。父对象有一个 @XmlAttribute 和一个子对象列表。其余服务可以生成两个示例父对象。一个例子包括一个孩子,另一个例子有两个孩子。因为具有一个或多个成员的列表的符号之间存在一些差异。此外,该服务有一个@POST 方法,它接收一个父对象并直接返回它。我的假设是将生成的 json 文本放入 post 方法并获得与以前相同的符号。但这不适用于大多数情况。
我的休息服务:
@Path("parent")
public class ParentResource {
@GET
@Produces ({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Parent generateExample(){
Parent father = new Parent();
father.setName("peter");
Child john = new Child();
john.setName("john");
father.getChildren().add(john);
return father;
}
@GET
@Path("list")
@Produces ({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Parent generateExample2(){
Parent father = new Parent();
father.setName("peter");
Child john = new Child();
john.setName("john");
Child sue = new Child();
sue.setName("sue");
father.getChildren().add(john);
father.getChildren().add(sue);
return father;
}
@POST
@Produces ({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Consumes ({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Parent echoEntity(Parent input){
return input;
}
}
家长
@XmlAccessorType (XmlAccessType.NONE)
@XmlRootElement (name="parent")
public class Parent implements Serializable{
@XmlAttribute
private String name;
@XmlElement
private List<Child> children = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Child> getChildren() {
if(children == null){
children = new LinkedList<Child>();
}
return children;
}
public void setChildren(List<Child> children) {
this.children = children;
}
}
孩子
@XmlAccessorType (XmlAccessType.NONE)
@XmlRootElement (name="child")
public class Child implements Serializable {
@XmlElement
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Parent+Child 包中的 package-info.java 来定义命名空间。
@javax.xml.bind.annotation.XmlSchema(namespace="http://myexample.com",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED,
attributeFormDefault = javax.xml.bind.annotation.XmlNsForm.UNQUALIFIED)
自定义上下文解析器
@Provider
@Produces (MediaType.APPLICATION_JSON)
@Consumes (MediaType.APPLICATION_JSON)
public class CustomResolver implements ContextResolver<JAXBContext>{
private final JAXBContext context;
private final Set<Class<?>> types;
private final Class<?>[] cTypes = {
Parent.class, Child.class
};
public CustomResolver() throws Exception {
this.types = new HashSet<Class<?>>(Arrays.asList(cTypes));
Map<String, String> nsMap = new HashMap<String, String>();
nsMap.put("http://myexample.com", "ex");
JSONConfiguration config = JSONConfiguration.natural().rootUnwrapping(false).build();
// JSONConfiguration config = JSONConfiguration.mapped().xml2JsonNs(nsMap).attributeAsElement("name").rootUnwrapping(false).build();
// JSONConfiguration config = JSONConfiguration.mapped().attributeAsElement("name").rootUnwrapping(false).build();
// JSONConfiguration config = JSONConfiguration.mappedJettison().build();
// JSONConfiguration config = JSONConfiguration.badgerFish().build();
context = new JSONJAXBContext(config, cTypes);
}
public JAXBContext getContext(Class<?> objectType) {
return (types.contains(objectType)) ? context : null;
}
}
休息应用程序,包括自定义上下文解析器
public class RestApplication extends Application {
private Set<Object> singletons = new HashSet<Object>();
private Set<Class<?>> classes = new HashSet<Class<?>>();
public RestApplication(){
singletons.add(new ParentResource());
classes.add(CustomResolver.class);
}
@Override
public Set<Class<?>> getClasses(){
return classes;
}
@Override
public Set<Object> getSingletons(){
return singletons;
}
}
没有自定义上下文解析器的测试结果(应用程序中的注释):
generated 1 :
{"@name":"peter","children":{"name":"john"}}
output of post method :
{"@name":"peter"}
generated 2 :
{"@name":"peter","children":[{"name":"john"},{"name":"sue"}]}
output of post method :
{"@name":"peter"}
使用自然符号测试结果(我喜欢使用这种符号)
generated 1 :
{"parent":{"name":"peter","children":[{"name":"john"}]}}
output of post method :
Exception: The request sent by the client was syntactically incorrect ()
generated 2 :
{"parent":{"name":"peter","children":[{"name":"john"},{"name":"sue"}]}}
output of post method :
Exception: The request sent by the client was syntactically incorrect ()
使用映射表示法且没有命名空间映射的测试结果
generated 1 :
{"parent":{"name":"peter","children":{"name":"john"}}}
output of post method :
The request sent by the client was syntactically incorrect ()
generated 2 :
{"parent":{"name":"peter","children":[{"name":"john"},{"name":"sue"}]}}
output of post method :
The request sent by the client was syntactically incorrect ()
带有映射符号的测试结果
generated 1 :
{"ex.parent":{"name":"peter","ex.children":{"ex.name":"john"}}}
output of post method :
{"ex.parent":{"name":"peter","ex.children":{"ex.name":"john"}}}
generated 2 :
{"ex.parent":{"name":"peter","ex.children":[{"ex.name":"john"},{"ex.name":"sue"}]}}
output of post method :
{"ex.parent":{"name":"peter","ex.children":[{"ex.name":"john"},{"ex.name":"sue"}]}}
哇,它有效。但是我不喜欢在 javascript 中使用这种表示法。命名空间前缀被合并到属性名称中。在访问嵌套元素时,这对于在 javascript 客户端中硬编码前缀不是很有用。前缀名称可能会改变!使用抛弃符号,它看起来比之前的例子更糟糕。
很长的故事,但一个简单的问题。有人有解决方案来接收 json 自然符号并能够将相同的符号发送到球衣休息服务吗?