在上篇转载的博客中,是DWR的入门教程。通过上篇博客,可以初步了解到,DWR的原理以及DWR的使用过程。
上篇博客中的,暴露的类是DWR,new实例化的。若是使用Spring容器中的实例化的类,如何操作呢?
其实很简单,具体的步骤如下:
在上篇博客中,具体的暴露类、jsp,都不用改动。
第一:既然使用spring,因此在web.xml中配置spring。
dwr org.directwebremoting.servlet.DwrServlet debug true crossDomainSessionSecurity false dwr /dwr/* org.springframework.web.context.ContextLoaderListener contextConfigLocation /WEB-INF/applicationContext.xml
第二:改动dwr.xml文件:
第三:配置Spring核心配置文件:
OK,到此就OK,很简单。
其中dwr.xml中参数beanName中的value值是与spring配置文件中的bean name 相同即可。
其中dwr.xml中的每一个类被调用的方法都需要create,其中create中的creator有多种类型,默认情况下new。
还可以是spring框架、struts、jsf、pageflow,有兴趣可以尝试下