我试图在此样本http://thekspace.com/home/component/content/article/57-restful-clients-in-spring-3.html
之后使用RestTemplate解析RESTFull调用的结果XML Response就是这样的:
<brands>
<brand>
<nodeRef>1111111</nodeRef>
<name>Test</name>
</brand>
</brands>
首先,我配置了我的application-context.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
<property name="messageConverters">
<list>
<bean id="messageConverter" class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
<property name="marshaller" ref="xstreamMarshaller" />
<property name="unmarshaller" ref="xstreamMarshaller" />
</bean>
</list>
</property>
</bean>
<bean id="xstreamMarshaller" class="org.springframework.oxm.xstream.XStreamMarshaller">
<property name="aliases">
<props>
<prop key="brand">com.kipcast.dataModel.drugs.bean.BrandViewList</prop>
</props>
</property>
</bean>
</beans>
com.kipcast.dataModel.drugs.bean.BrandViewList类是一个定义了@XStreamAlias(“brand”)的bean。
这是我如何进行休息:
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("application-context.xml", WebscriptCaller.class);
RestTemplate restTemplate = applicationContext.getBean("restTemplate", RestTemplate.class);
String url = "http://localhost:8081/alfresco/service/search/brand.xml?q={keyword}&alf_ticket={ticket}";
List<BrandViewList> results = (List<BrandViewList>) restTemplate.getForObject(url, List.class, params);
WebscriptCaller.class是我执行这些指令的类。
当我尝试执行它时,getForObject()失败并且我得到了该异常:
XStream unmarshalling exception; nested exception is com.thoughtworks.xstream.mapper.CannotResolveClassException: brands
我的问题是,我该如何解决这个问题?为什么我会遇到这种例外?我如何告诉他跳过root标签?
--------------更新--------------
修复了一些问题,特别是:
List<Brand> brandViewList = (List<Brand>) restTemplate.getForObject(url, Brand.class, params);
但结果现在是:
org.springframework.http.converter.HttpMessageNotReadableException: Could not read [class com.kipcast.dataModel.drugs.bean.Brand]; nested exception is org.springframework.oxm.UnmarshallingFailureException: XStream unmarshalling exception; nested exception is com.thoughtworks.xstream.converters.ConversionException: nodeRef : nodeRef
---- Debugging information ----
message : nodeRef
cause-exception : com.thoughtworks.xstream.mapper.CannotResolveClassException
cause-message : nodeRef
class : java.util.ArrayList
required-type : java.util.ArrayList
converter-type : com.thoughtworks.xstream.converters.collections.CollectionConverter
path : /brands/brand/nodeRef
line number : 3
class[1] : com.kipcast.dataModel.drugs.bean.Brands
converter-type[1] : com.thoughtworks.xstream.converters.reflection.ReflectionConverter
version : null
-------------------------------
答案 0 :(得分:2)
编辑:已更新为仅包含相关信息
最好是有不同的类处理“品牌”和“品牌”标签。我会创建一个Brand
类,将BrandList
重命名为Brands
(更接近他们引用的XML部分),让Brands
保持List<Brand>
。在两个类中加上适当的注释,你应该完成,例如:
@XStreamAlias("brands")
class Brands {
@XStreamImplicit
List<Brand> brand;
}
@XStreamAlias("brand")
class Brand {
String nodeRef;
String name;
}
上面的代码在将对象编组到XML时非常有效,但是当您从XML解组到对象时,会失败。为了使其工作正常,您需要告诉编组员您有哪些注释类:
<bean name="marshaller" class="org.springframework.oxm.xstream.XStreamMarshaller">
<property name="autodetectAnnotations" value="true"/>
<property name="annotatedClasses">
<array>
<value>com.kipcast.dataModel.drugs.bean.BrandViewList</value>
<value>com.kipcast.dataModel.drugs.bean.BrandView</value>
</array>
</property>
</bean>
我创建了sample project,我在其中验证了设置。
答案 1 :(得分:0)
我使用ArrayList类型解决了这个问题。所以不需要使用假类来处理列表。这对我有用(没有使用任何注释):
<bean id="xstreamMarshaller" class="org.springframework.oxm.xstream.XStreamMarshaller">
<property name="aliases">
<props>
<prop key="brands">java.util.ArrayList</prop>
<prop key="brand">com.kipcast.dataModel.drugs.bean.BrandView</prop>
</props>
</property>
</bean>