Tuesday, January 2, 2007

dwr integrated with spring


dwr.xml中creator="spring"即让spring来创建这个bean:
<?xml version="1.0" encoding="UTF-8"?>
<dwr>
<allow>
<create creator="spring" javascript="JDate">
<param name="beanName" value="hahaDate" />
</create>
</allow>
</dwr>


之后是创建这个bean的xml文件,我直接用applicationContext.xml了,偷懒,哈哈:
<?xml version=" 1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd ">
<beans>
<!-- beans used by dwr -->
<bean id="hahaDate" class="java.util.Date">
</bean>
</beans>


最后是配置web.xml,在其中加入创建这个bean的xml文件和使用到的ContextLoaderListener。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>


现在localhost:8080/[mywebapp]/dwr之后应该能看到JDate的信息了。ok,可以用了,呵呵!

No comments: