博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dwr+spring
阅读量:5225 次
发布时间:2019-06-14

本文共 4614 字,大约阅读时间需要 15 分钟。

DWR(Direct Web Remoting)是一个用于改善web页面与Java类交互的远程服务器端Ajax开源框架,可以帮助开发人员开发包含AJAX技术的网站.它可以允许在里的代码使用运行在上的JAVA函数,就像它就在浏览器里一样。

         

以下模拟一个简单的dwr入门案例,重点理解dwr是如何跟java后台服务器打交道的

模拟效果如下

该功能说明了dwr是怎么跟后台服务器打交道的

模拟从服务器加载下拉列表数据

模拟保存功能

模拟查询功能

                  

接下来为dwr+spring集成步骤:

1、新建一个web工程,导入dwr+spring所需jar,如下图

              

目录结构图

              

修改web.xml

contextConfigLocation
classpath:resource/app*.xml
org.springframework.web.context.ContextLoaderListener
dwrServlet
org.directwebremoting.servlet.DwrServlet
config
/WEB-INF/classes/config/dwr.xml
debug
true
dwrServlet
/dwr/*

              

新建实体类Dept

package entity; publicclass Dept {
private Long id; private String name; public Dept() {
} public Dept(Long id, String name) {
this.id = id; this.name = name; } public Long getId() {
return id; } publicvoid setId(Long id) {
this.id = id; } public String getName() {
return name; } publicvoid setName(String name) {
this.name = name; } }

            

新建业务逻辑类

 DeptServices类

package services; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import entity.Dept; @SuppressWarnings("unchecked") publicclass DeptServices {
public List findDept() {
thrownew RuntimeException("查找失败!"); } publicvoid deleteDept(Long id) {
System.out.println("Delete dept "+ id); } public List getDeptsForPo() {
List depts =new ArrayList(); depts.add(new Dept(1l, "教质部")); depts.add(new Dept(2l, "学术部")); depts.add(new Dept(3l, "就业部")); depts.add(new Dept(4l, "咨询部")); return depts; } publicvoid saveDept(List
depts) {
// System.out.println(dept.getId() + ":" + dept.getName()); System.out.println(depts); } public List getDepts() {
List depts =new ArrayList(); Map map =new HashMap(); map.put("id", "01"); map.put("name", "教质部"); depts.add(map); map =new HashMap(); map.put("id", "02"); map.put("name", "学术部"); depts.add(map); map =new HashMap(); map.put("id", "03"); map.put("name", "就业部"); depts.add(map); map =new HashMap(); map.put("id", "04"); map.put("name", "咨询部"); depts.add(map); try {
Thread.sleep(1000); } catch (InterruptedException e) {
e.printStackTrace(); } return depts; } }

                

HelloServices类

package services; /**  * @author dlwu  * */ publicclass HelloServices {
public String sayHello(String name){
System.out.println("Hello now!"); return"Hello "+ name +"!"; } }

             

LoginService类

package services; import org.directwebremoting.WebContext; import org.directwebremoting.WebContextFactory; publicclass LoginService {
publicvoid checkUserLogin(String userid, String pwd){
WebContext ctx = WebContextFactory.get(); ctx.getSession().setAttribute("userid", userid); } public String getLoginUser(){
WebContext ctx = WebContextFactory.get(); return (String)ctx.getSession().getAttribute("userid"); } }

            

配置applicationContext.xml

             

配置dwr.xml,dwr.xml是前台js跟java服务器沟通的桥梁

             

页面

hello.jsp页面

<%@ page language="java"import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>     My JSP 'hello.jsp' starting page 

               

dept.jsp页面

<%@ page language="java"import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>     My JSP 'hello.jsp' starting page 

ID: Name:

访问路径:

测试路径:

              

              

 

转载于:https://www.cnblogs.com/xigua1hao/p/3634383.html

你可能感兴趣的文章
11月回顾总结
查看>>
Keil开发的ARM程序main函数之前的汇编分析
查看>>
session和cookie的最深刻理解
查看>>
构造函数
查看>>
java中的类型比较
查看>>
17国庆day3
查看>>
ubuntu chrome
查看>>
python--11、协程
查看>>
使用react中遇到的问题
查看>>
linux学习笔记-配置vbox虚拟机本地连接和外网同时可用
查看>>
UVA1437 String painter
查看>>
python-面向对象编程知识点小结
查看>>
jquery简单几句代码实现星级评论效果
查看>>
[题解] [TJOI2011] 构造矩阵
查看>>
java后台接口
查看>>
HDOJ 1323 Perfection(简单题)
查看>>
java 基础 01 变量和注释、数据类型
查看>>
day05作业
查看>>
极化码的matlab仿真(4)——SC译码(2)
查看>>
Dubbo 相关知识
查看>>