dwr
iteye_1045
这个作者很懒,什么都没留下…
展开
-
dwr应用(1)
DWR是一个Java开源库,帮助你实现Ajax网站。你可以在在Javascript代码中调用Web服务器上的Java程序,像在Java代码就在浏览器中一样。 DWR主要包括两部分: 1.在服务器上运行的Servlet来处理请求并把结果返回浏览器。 2.运行在浏览器上的Javascript,可以发送请求,并动态改变页面。 D...2008-12-25 10:13:22 · 83 阅读 · 0 评论 -
dwr(2) 配置文件
dwr.xml文件的结构如下: <!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 1.0//EN" "http://www.getahead.ltd.uk/dwr/dwr10.dtd"> <dwr> <!-- init is only needed if y...2008-12-25 13:17:54 · 197 阅读 · 0 评论 -
dwr中使用annotation
@RemoteProxy 对应dwr.xml中的.如要使用spring这样写@RemoteProxy(name = "js的名字", creator = SpringCreator.class, creatorParams = {@Param(name = "beanName", value = "spring中bean的id")}) @RemoteMethod 对应dwr.xml中的 @...2008-12-26 10:29:52 · 102 阅读 · 0 评论 -
dwr的util.js使用-addOptions
[b]dwr.util.addOptions()[/b] 这个方法可以给ol, ul,select添加元素。如果是ol, ul就添加li如果是select就添加option。 数据来源可以是字符串数组,对象数组,map. [b]1.字符串数组[/b] 如果数据是字符串数组 dwr.util.addOptions(id, [ "one", "two", "three" ],[options...2008-12-26 16:14:26 · 201 阅读 · 0 评论 -
INFO : Probably not an issue: org.jdom.Document is not available so the jdom con
启动TOMCAT时,控制台提示以下信息 INFO : Probably not an issue: org.jdom.Document is not available so the jdom converter will not load. This is only an problem if you wanted to use it 但操作没有问题了... ... 在网上搜了一下解决...原创 2009-09-15 12:00:49 · 598 阅读 · 0 评论