DWR
dengzhouit
这个作者很懒,什么都没留下…
展开
-
DWR页面代码
String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+pat原创 2011-10-19 08:04:35 · 530 阅读 · 0 评论 -
DWR配置文件代码
"-//GetAhead Limited//DTD Direct Web Remoting 2.0//EN" "http://getahead.org/dwr/dwr20.dtd">原创 2011-10-19 08:08:56 · 384 阅读 · 0 评论 -
DWR使用过程
1. 添加支持jar包(dwr.jar)2. 在web.xml中配置核心的DWRServlet(由它来负责为我们在客户端生成相应的工具类和JS对象)3. 配置我们需要调用的后台JavaBean和后面在客户端生成的Js对象间的 映射关系(需要在dwr.xm原创 2011-10-19 07:50:34 · 337 阅读 · 0 评论 -
DWR在web.xml中配置的文件
dwr uk.ltd.getahead.dwr.DWRServlet dwr /dwr/*原创 2011-10-19 08:16:31 · 485 阅读 · 0 评论 -
DWR使用的类
userServicepackage com.accp.dwr.service;import java.util.List;public class UserService { public boolean isExistsUser(String name){原创 2011-10-19 08:20:54 · 319 阅读 · 0 评论