spring处理ajax请求,springmvc处理ajax请求

1.controller将数据封装成json格式返回页面

@RequestMapping("/dataList")

public void datalist(CsoftCunstomerPage page,HttpServletResponse response) throws Exception{

List dataList = csoftCunstomerService.queryByList(page);

//设置页面数据

Map jsonMap = new HashMap();

jsonMap.put("total",page.getPager().getRowCount());

jsonMap.put("rows", dataList);

try {

//设置页面不缓存

response.setContentType("application/json");

response.setHeader("Pragma", "No-cache");

response.setHeader("Cache-Control", "no-cache");

response.setCharacterEncoding("UTF-8");

PrintWriter out= null;

out = response.getWriter();

out.print(JSONUtil.toJSONString(jsonMap));

out.flush();

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

2.ajax提交数据以json格式到controller中

例一:

/p>

"http://www.w3.org/TR/html4/loose.dtd">

$(document).ready(function() {

ajaxRequest();

});

function ajaxRequest() {

$.ajax({

url: "http://localhost:8080/sshdemo/hello/ajax",

type: "POST",

dataType: "json",

data: {

"a": 1,

"b": 2,

"c": 3

},

async: false,

success: function(data) {

alert("success");

$.each(data, function(index, element) {

alert(element.a);

alert(element.b);

alert(element.c);

});

},

error: function() {

alert("error");

}

});

}

Hello World!

package com.xbs.ready.ssh.controller;

import com.alibaba.fastjson.JSON;

import java.io.IOException;

import java.io.PrintWriter;

import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

import java.util.logging.Level;

import java.util.logging.Logger;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

/**

*

* @author xbs

*/

@Controller

@RequestMapping("hello")

public class HelloController {

/**

* ajax请求不需要返回页面,只需要得到response中的数据即可,所以方法签名为void即可

*

* @param request

* @param response

*/

@RequestMapping(value = "ajax", method = RequestMethod.POST)

public void ajaxDatas(HttpServletRequest request, HttpServletResponse response) {

String jsonResult = getJSONString(request);

renderData(response, jsonResult);

}

private String getJSONString(HttpServletRequest request) {

//故意构造一个数组,使返回的数据为json数组,数据更复杂些

List> datas = new ArrayList>(5);

Map map1 = new HashMap(10);

//可以获得ajax请求中的参数

map1.put("a", request.getParameter("a"));

map1.put("b", request.getParameter("b"));

map1.put("c", request.getParameter("c"));

datas.add(map1);

//故意构造一个数组,使返回的数据为json数组,数据更复杂些

Map map2 = new HashMap(10);

map2.put("a", "11");

map2.put("b", "22");

map2.put("c", "33");

datas.add(map2);

String jsonResult = JSON.toJSONString(datas);

return jsonResult;

}

/**

* 通过PrintWriter将响应数据写入response,ajax可以接受到这个数据

*

* @param response

* @param data

*/

private void renderData(HttpServletResponse response, String data) {

PrintWriter printWriter = null;

try {

printWriter = response.getWriter();

printWriter.print(data);

} catch (IOException ex) {

Logger.getLogger(HelloController.class.getName()).log(Level.SEVERE, null, ex);

} finally {

if (null != printWriter) {

printWriter.flush();

printWriter.close();

}

}

}

}

例二:

helloworld

$(function(){

$("#testButton").click(function(){

var $a = $(this);

$.ajax({

url:"/spring_mvc/testAjax.do",

type:'post',

data:'name=admin&password=123456',

dataType:'html',

success:function(data,status){

if(status == "success"){

var objs = jQuery.parseJSON(data);

var str = "";

for(var i=0;i

str = str + objs[i].activityName+" ";

}

$("#content").html(str);

}

},

error:function(xhr,textStatus,errorThrown){

}

});

});

});

异步传输

public class TestAjaxAction implements Controller {

public ModelAndView handleRequest(HttpServletRequest request,

HttpServletResponse response) throws Exception {

response.setCharacterEncoding("UTF-8");

String name = request.getParameter("name");

String password = request.getParameter("password");

System.out.println(name+" : "+password);

PrintWriter out = response.getWriter();

List> list = new ArrayList>();

Map m1 = new HashMap();

m1.put("activityId", "000001");

m1.put("activityName", "阿斯蒂芬1");

Map m2 = new HashMap();

m2.put("activityId", "000002");

m2.put("activityName", "阿斯蒂芬2");

Map m3 = new HashMap();

m3.put("activityId", "000003");

m3.put("activityName", "阿斯蒂芬3");

Map m4 = new HashMap();

m4.put("activityId", "000004");

m4.put("activityName", "阿斯蒂芬4");

Map m5 = new HashMap();

m5.put("activityId", "000005");

m5.put("activityName", "阿斯蒂芬5");

list.add(m1);

list.add(m2);

list.add(m3);

list.add(m4);

list.add(m5);

String s = JSONArray.fromObject(list).toString();

out.print(s);

out.close();

return null;

}

}

例三:

@RequestMapping("/dataList")

public void datalist(CsoftCunstomerPage page,HttpServletResponse response) throws Exception{

List dataList = csoftCunstomerService.queryByList(page);

//设置页面数据

Map jsonMap = new HashMap();

jsonMap.put("total",page.getPager().getRowCount());

jsonMap.put("rows", dataList);

try {

//设置页面不缓存

response.setContentType("application/json");

response.setHeader("Pragma", "No-cache");

response.setHeader("Cache-Control", "no-cache");

response.setCharacterEncoding("UTF-8");

PrintWriter out= null;

out = response.getWriter();

out.print(JSONUtil.toJSONString(jsonMap));

out.flush();

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

SpringMVC的AJAX请求报406错误

SpringMVC的AJAX请求报406错误原因有两种:1.jackson包没有引入 2.如果已经引入jackson包了还报406的错误,那么就有可能是请求的url路径是.html结尾,但是返回的数据 ...

SpringMVC响应Ajax请求(@Responsebody注解返回页面)

项目需求描述:page1中的ajax请求Controller,Controller负责将service返回的数据填充到page2中,并将page2整个页面返回到page1中ajax的回调函数. 一句话 ...

SpringMVC下Ajax请求的方法,@Responsebody如果返回的是布尔值,ajax不会接到任何回传数据

SpringMVC框架下,如果用ajax向后台请求得方法如果使用@Responsebody返回布尔值的话,ajax得不到任何的回传数据. 但是如果返回String类型,就是正常的. 测试了下代码写得没 ...

SpringMVC经典系列-13使用SpringMVC处理Ajax请求---【LinusZhu】

注意:此文章是个人原创,希望有转载须要的朋友们标明文章出处,假设各位朋友们认为写的还好,就给个赞哈,你的鼓舞是我创作的最大动力,LinusZhu在此表示十分感谢,当然文章中如有纰漏,请联系linusz ...

SpringMVC处理ajax请求的注意事项

.首先要知道ajax请求的核心是JavaScrip对象和XmlHttpRequest,而浏览器请求的核心是浏览器 ajax请求 浏览器请求 场景一:使用ajax获取session中的user 从上图可 ...

SpringMVC处理ajax请求的跨域问题和注意事项

.首先要知道ajax请求的核心是JavaScrip对象和XmlHttpRequest,而浏览器请求的核心是浏览器我的个人博客(基于SSM,Redis,Tomcat集群的后台架构) github:htt ...

SpringMVC进行Ajax请求页面显示乱码

最近在项目的使用过程中发现在springmvc的项目中,使用返回页面的请求方式,数据都能正常显示,但是对于ajax的请求,始终显示乱码. 首先第一种是因为我们在web.xml中配置了spring的字符 ...

封装springmvc处理ajax请求结果

原文链接:http://blog.csdn.net/qq_37936542/article/details/79064818 需求描述:ajax向后台发起请求,springmvc在处理完请求后返回的结 ...

Restful风格的springMVC配搭ajax请求的小例子

1. GET请求的例子 ajax代码: 请求参数拼接在url后面(参数在服务器可通过HttpServletRequest获取,也可以直接通过@RequestParam自动注入,参考DELETE例子的方 ...

随机推荐

HTML5全屏(Fullscreen)API详细介绍

// 整个页面 οnclick=   launchFullScreen(document.documentElement); // 某个元素 launchFullScreen(document.get ...

简易的IOS位置定位服务

有时一些小的需求,其实只是需要得知当前IOS APP使用的地点,有些只是想精确到城市级别,并不需要任何地图. 有了以下的简易实现: @interface MainViewController ()&l ...

C++ 异常机制分析

C++异常机制概述 异常处理是C++的一项语言机制,用于在程序中处理异常事件.异常事件在C++中表示为异常对象.异常事件发生时,程序使用throw关键字抛出异常表达式,抛出点称为异常出现点,由操作系统 ...

json 是个什么东西?

JSONP原理 JSONP(JSON with Padding),就是异步请求跨域的服务器端时,不是直接返回数据,而是返回一个js方法,把数据作为参数传过来.如果只是跨域传递数据那么这种方式是比较好的 ...

html 通用 遮罩弹出层 弹出后 支持跳转页面

//showMessage 提示的内容默认为空必填 buttonText:按钮显示的内容默认为"确定" 传入 "" 为默认 url:跳转链接 传入"& ...

Objective-C之Category的使用

*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } ...

uva 348

dp还是比较容易  关键是输出路径 .... #include #include #include #de ...

Java基础知识总结(二)

&和&&的区别: 按位与:a&b是把a和b都转换成二进制数后逐位进行与的运算.若两数字的某位都为1,则该位的运算结果才为1.运算的最终结果是数字. 逻辑与:a& ...

select的种种取值

今天别人问我一个问题

[Swift]LeetCode203. 移除链表元素 | Remove Linked List Elements

Remove all elements from a linked list of integers that have value val. Example: Input: 1->2-> ...

你可能感兴趣的:(spring处理ajax请求)