RestTemplate restTemplate = new RestTemplate();
Source oResponse = restTemplate.postForObject(url,entity,Source.class,vars);
XPathOperations xpathTemplate = new Jaxp13XPathTemplate();
String address = xpathTemplate.evaluateAsString("//status",oResponse);
但是,我收到以下错误
java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.forName(Ljava/lang/String;)Ljava/lang/Class;
at org.springframework.xml.JaxpVersion.
请帮忙.
谢谢,
弗拉基米尔
最佳答案
运行时的NoSuchMethodError表示您使用的库版本不同于构建代码的版本.
原文链接:/spring/432010.html在你的情况下,春天是罪魁祸首.检查运行时类路径上的内容并确保以下内容:
>版本与编译时jar相同
>如果有多个版本,请删除不需要的版本
看看http://docs.spring.io/spring/docs/3.2.0.M1/api/org/springframework/util/ClassUtils.html,从Spring 3开始,似乎不推荐使用ClassUtils.forName(String).我的猜测是你已经针对具有此方法的版本构建了代码,但是使用已删除方法的版本运行它.
ClassUtils类包含在spring-core jar中,因此我将确保在编译和运行时使用相同版本的jar.