SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported

问题阐述:今天我在写SSM框架的时候,用jQery的ajax传送一个JSON数据到我后台JSNOController控制器,结果报Content type ‘application/json’ not supported
给大家看下我的项目目录跟代码
项目目录:
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第1张图片
前台页面:index.jsp(!!!第一次写这代码怎么是红的改不了啊!!!!_
1.页面使用jquery发送json数据,在页面的部分,引用jquery和json2的js文件
2.页面载入完成后调用testRquestBody函数
3.函数执行里面的各个步骤说明注释都有,自己可以看

**<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>




测试接收JSON格式的数据





编号:
书名:
作者:
**

控制器:JSONController

import javax.servlet.http.HttpServletResponse;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.codehaus.jackson.map.ObjectMapper;
import com.ssm.chapter14.pojo.Book;

@Controller
@RequestMapping("/json")
public class JSONController {
	@RequestMapping("/testRequestBody")
	//	@RequestBody根据json,转换成Book的对象book
	public void setjson(@RequestBody Book book, HttpServletResponse response) throws Exception 
	{
		final Log logger = LogFactory.getLog(JSONController.class);
		//讲java对象转换成json格式的数据
		ObjectMapper mapper=new ObjectMapper();
		//日志打印验证前台的数据是否传过来
		logger.info(mapper.writeValueAsString(book));
		//前台传过来的数据没有book里面author的属性值,这里设置一下
		book.setAuthor("小董");
    	response.setContentType("text/html;charset=UTF-8");
    	//通过response把book对象转换成json写到客户端
    	response.getWriter().println(mapper.writeValueAsString(book));
}
}

实体类:BOOK:
package com.ssm.chapter14.pojo;

public class Book {
private int id;
private String name;
private String author;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
@Override
public String toString() {
return “Book [id=” + id + “, name=” + name + “, author=” + author + “]”;
}
}

剩下的就是xml文件配置,我这里就不给不出了,与问题无关。

然后我们运行index.jsp
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第2张图片
控制台报错:
在这里插入图片描述
这里显示json解析失败,然后我就去百度为什么报错,看到在index.jsp里面的ajax代码里面的contentType:"application/json"改成“application/json;charset=utf-8”,但是我这边还是报原来的错误SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第3张图片
我这边引起的问题是jar没有部署到tomacat下的lib。右键项目->属性->Deployment Assembly->add->Java Build Path Entries->下一步->选择自己需要的jar库->完成
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第4张图片
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第5张图片
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第6张图片
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第7张图片
点击应用

运行index.jsp
SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported_第8张图片
编号和书名是我前台输入,然后传到后台控制器,控制器又讲作者加到传过来的数据中返回前台,成功打印。

你可能感兴趣的:(SSM框架前台向后台传送JSON报错:Content type 'application/json' not supported)