现在在做的项目用到了SpringMVC框架,需要从前端angular接收请求的JSON数据,为了测试方便,所以直接先用AJAX进行测试,不过刚开始用平时用的ajax方法,提交请求会出现415或者400错误,经过研究,终于可以了,现在做个总结。

js代码:


  1. function postSimpleData() {
  2. $.ajax({
  3. type: "POST",
  4. url: "Service/SimpleData",
  5. contentType: "application/json", //必须有
  6. dataType: "json", //表示返回值类型,不必须
  7. data: JSON.stringify({ 'foo': 'foovalue', 'bar': 'barvalue' }), //相当于 //data: "{'str1':'foovalue', 'str2':'barvalue'}",
  8. success: function (jsonResult) {
  9. alert(jsonResult);
  10. }
  11. });
  12. }
  13. function login(){
  14. $.ajax({
  15. url: "Service/login",
  16. type: "POST",
  17. contentType: "application/json",
  18. dataType: "json",
  19. data: JSON.stringify({
  20. MachineIP:"127.0.0.1",
  21. AppTag:"4",
  22. RequestInfo:{
  23. StaffCode:"",
  24. Password:"",
  25. StaffCard:"01411"
  26. },
  27. }),
  28. async: true,
  29. success: function(data) {
  30. var ss = JSON.stringify(data);
  31. $("#result").val(ss);
  32. console.log(ss);
  33. }
  34. });
  35. }
  36. function postEmployees() {
  37. $.ajax({
  38. type: "POST",
  39. url: "Service/Employees",
  40. contentType: "application/json",
  41. dataType: "json",
  42. data: JSON.stringify({ "Employees": [
  43. { "firstName": "Bill", "lastName": "Gates" },
  44. { "firstName": "George", "lastName": "Bush" },
  45. { "firstName": "Thomas", "lastName": "Carter" }
  46. ]
  47. }),
  48. success: function (jsonResult) {
  49. alert(jsonResult);
  50. }
  51. });
  52. }

JAVA Controller代码:


  1. @RequestMapping(value = "/SimpleData", method = RequestMethod.POST)
  2. @ResponseBody
  3. public ActionResult SimpleData(string foo, string bar) {
  4. return Json("SimpleData", JsonRequestBehavior.AllowGet);
  5. }
  6. @RequestMapping(value = "/login", method = RequestMethod.POST)
  7. @ResponseBody
  8. public ResponseProtocolMap login(@RequestBody JSONObject requestJson, HttpServletRequest request) {
  9. ResponseProtocolMap responseProtocolMap = null;
  10. String machineIP = RequestJsonUtils.getMachineIP(requestJson);
  11. String appTag = RequestJsonUtils.getAppTag(requestJson);
  12. JSONObject requestInfo = RequestJsonUtils.getRequestInfo(requestJson);
  13. if (requestInfo == null) {
  14. responseProtocolMap = new ResponseProtocolMap("-1", "参数错误");
  15. } else {
  16. String staffCode = RequestJsonUtils.getValueByKey(requestInfo, "StaffCode");
  17. String password = RequestJsonUtils.getValueByKey(requestInfo, "Password");
  18. String staffCard = RequestJsonUtils.getValueByKey(requestInfo, "StaffCard");
  19. responseProtocolMap = sysLoginService.login(staffCode, password, staffCard, appTag, request);
  20. }
  21. return responseProtocolMap;
  22. }
  23. @RequestMapping(value = "/Employees", method = RequestMethod.POST)
  24. @ResponseBody
  25. public ActionResult Employees(List<Employee> Employees) {
  26. return Json("Employees", JsonRequestBehavior.AllowGet);
  27. }


  1. public class Employee{
  2. public string FirstName { get; set; }
  3. public string LastName { get; set; }
  4. }

值得注意的有2点:

1)Ajax 选项中

contentType: "application/json"

这一条必须写,表明request的数据类型是json。

dataType: "json"

这一条表示返回值的类型,不是必须的,且依据返回值类型而定。

2)选项中

data: JSON.stringify({ 'foo': 'foovalue', 'bar': 'barvalue' })

很多时候我们将数据写作:

{ 'foo': 'foovalue', 'bar': 'barvalue' }

这样会导致错误,因为js会默认将这个json对象放到表单数据中,故而导致controller接收不到。

有两种办法处理:第一种方式是用JSON.stringify()函数,其中JSON被Ecmascript5定义为全局对象。

第二种方式是直接用双引号包裹起来,比如data: "{'str1':'foovalue', 'str2':'barvalue'}"。

通过Ajax进行POST提交JSON类型的数据到SpringMVC Controller的方法的更多相关文章

  1. springmvc接收JSON类型的数据

    1.在使用AJAX传递JSON数据的时候要将contentType的类型设置为"application/json",否则的话会提示415错误 2.传递的data需要时JSON类型的 ...

  2. springMVC参数绑定JSON类型的数据

    需求就是: 现在保存一个Student,并且保存Student的friend,一个student会有多个朋友,这里要传递到后台的参数是: var friends = new Array(); var ...

  3. 关于ajax 进行post提交 json数据到controller

    首选需要参考的两个博客: www.cnblogs.com/Benjamin/archive/2013/09/11/3314576.html http://www.cnblogs.com/quanyon ...

  4. 通过Ajax post Json类型的数据到Controller

    View function postSimpleData() { $.ajax({ type: "POST", url: "/Service/SimpleData&quo ...

  5. jquery ajax提交json格式的数据,后台接收并显示各个属性

    我的表单如下: <form onsubmit="return false"> <ul> <li><span>用户名</span ...

  6. Mysql里查询字段为Json格式的数据模糊查询以及分页方法

    public void datagrid(CustomFormEntity customForm,HttpServletRequest request, HttpServletResponse res ...

  7. 9.SpringMVC和json结合传递数据 && 10.SpringMVC获取controller中json的数据

  8. SpringMVC——对Ajax的处理(包含 JSON 类型)

    一.首先要搞明白的一些事情. 1.从客户端来看,需要搞明白: (1)要发送什么样格式的 JSON 数据才能被服务器端的 SpringMVC 很便捷的处理,怎么才能让我们写更少的代码,如何做好 JSON ...

  9. Struts2+Jquery实现ajax并返回json类型数据

    来源于:http://my.oschina.net/simpleton/blog/139212 摘要 主要实现步骤如下: 1.JSP页面使用脚本代码执行ajax请求 2.Action中查询出需要返回的 ...

随机推荐

  1. RandomStringUtils生成随机数

    org.apache.commons.lang.RandomStringUtils;                                        //产生5位长度的随机字符串,中文环 ...

  2. 有关R6034错误的思考

    作者:朱金灿 来源:http://blog.csdn.net/clever101 我们有时会遇到R6034错误,工程明明编译通过,但是运行时却出现: 网上的解决办法很多,但是有效的不多,特别是对阐述这 ...

  3. [Chromium文档转载,第001章] Mojo Migration Guide

        For Developers‎ > ‎Design Documents‎ > ‎Mojo‎ > ‎ Mojo Migration Guide 目录 1 Summary 2 H ...

  4. thinkserer TD350 系统损坏后,数据恢复及系统重做过程

    电脑配置: 联想服务器 TD350   E5-2609V4 2*8G 2*4T+R1 塔式 单电 1.系统恢复: 试过很多种方法,均无效 2.数据恢复:  重新安装系统后,直接在D盘查找 , 原C盘的 ...

  5. 51nod 最长公共子序列+输出路径

    当x = 0 或 y = 0时 f[x][y] = 0 当a[x] = b[y]时  f[x][y] = f[x-1][y-1]+1 当a[x] != b[y]时 f[x][y] = max(f[x] ...

  6. webp学习http://isux.tencent.com/introduction-of-webp.html

    http://isux.tencent.com/introduction-of-webp.html http://jingyan.baidu.com/article/2d5afd699cd7de85a ...

  7. CSS 类、伪类和伪元素差别具体解释

    CSS中的类(class)是为了方便过滤(即选择)元素,以给这类元素加入样式,class是定义在HTML文档树中的. 可是这在一些情况下是不够用的,比方用户的交互动作(悬停.激活等)会导致元素状态发生 ...

  8. You have ettempted to queue to many files.You may select one files.

    <script type="text/javascript" src="/script/swfupload/swfupload.js"></s ...

  9. matlab中tic和toc使用方法

    tic和toc用来记录matlab命令运行的时间.  tic用来保存当前时间,而后使用toc来记录程序完毕时间. 两者往往结合使用,使用方法例如以下: 程序代码: tic  operations  t ...

  10. 关于app.FragmentManager和v4包的FragmentPagerAdapter冲突

    这几天发现一个问题我用getFragmentManager()得到FragmentManager不能放到FragmentPagerAdapter里面去.由于FragmentPagerAdapter里面 ...