使用Spring的DWR3.0 RC2启动项目时发生错误。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Spring的DWR3.0 RC2启动项目时发生错误。相关的知识,希望对你有一定的参考价值。

这几天我把DWR引入到我的项目中,我的项目使用的是Spring 4,我想通过使用注释的方法把DWR和Spring整合起来。我的项目使用的是Spring 4,我试图通过使用注解方法将DWR与Spring集成。下面是我的集成工作代码,当我在Tomcat服务器上Stratup我的项目时,发生了如下所示的错误。

错误的原因是

java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.forName(Ljava/lang/String;)Ljava/lang/Class;
at org.directwebremoting.spring.DwrAnnotationPostProcessor.getBeanDefinitionClass(DwrAnnotationPostProcessor.java:96)
at org.directwebremoting.spring.DwrAnnotationPostProcessor.postProcessBeanFactory(DwrAnnotationPostProcessor.java:52)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPos
Processors(PostProcessorRegistrationDelegate.java:265)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:177)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)

web.xml

<servlet>
  <servlet-name>dwr-dispatcher</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <load-on-startup>2</load-on-startup>
</servlet>

dwr-dispatcher-servlet.xml。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
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-4.0.xsd
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.directwebremoting.org/schema/spring-dwr
http://www.directwebremoting.org/schema/spring-dwr-3.0.xsd">

<context:annotation-config />
<context:component-scan base-package="com.xdfaint.webapp.apps.*.action" />
<dwr:configuration />
<dwr:annotation-config id="dwrAnnotationConfig" />
<dwr:url-mapping />
<dwr:controller id="dwrController" debug="true" />


<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
  <property name="order" value="1" />
</bean>

<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping">
  <property name="order" value="2" />
</bean>

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="prefix">
    <value>/core/jsp/</value>
  </property>
  <property name="suffix">
    <value>.jsp</value>
  </property>
</bean>

</beans>

我还没有找到任何解决方案。然后我试着用Spring 3.2来代替,启动成功,不再出错。我不知道当Spring 4遇到DWR3的时候是否有问题。有谁能帮忙吗?谢谢


DWR已经很久没有更新了,我也不再使用它了。但它对我们的帮助还是很大的,值得我们去阅读学习,比如 rest api 绑定的概念,对象操作。关于对象操作,我发现了一些有用的函数,比如setObject(),在我做前端组件封装工作时,大量使用。无论是setObject函数的代码还是下面使用的demo列表,有了它,我可以在任意嵌套级别的对象中初始化一个filed,即使有一些父对象的新字段还没有被声明。

enter image description here

答案

在Spring 4中没有方法 forNameClassUtils 只接受String作为参数。正如你可以从JavaDoc 此处 该方法在Spring 3中已经被废弃。

似乎DWR还没有升级他们的代码库以支持Spring 4。看来你得等着升级了(虽然这个项目似乎还没有启动,所以我不指望很快就能升级)。

以上是关于使用Spring的DWR3.0 RC2启动项目时发生错误。的主要内容,如果未能解决你的问题,请参考以下文章

DWR3.0 服务器推送及解惑

DWR3.0框架入门 —— 实现ajax

DWR3.0框架入门 —— ScriptSession的维护及优化

关于spring cloud “Finchley.RC2”版本在spring cloud config中的ArrayIndexOutOfBoundsException

@JsonView 不过滤属性(Spring 4.1.0.RC2,Jackson 2.3.2)

Grails Spring Security Core无法登录