SpringMVC在使用JSON时报错信息为:Content type 'application/json;charset=UTF-8' not supported

直接原因是:我的(maven)项目parent父工程pom.xml缺少必要的三个jar包依赖坐标。

解决方法是:在web子模块的pom.xml里面添加springMVC使用JSON实现AJAX请求。

<!--spring mvc-json依赖-->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.9.9</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>2.9.9</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.9.9</version>
        </dependency>
<spring.version>5.0.15.RELEASE</spring.version>

jsp页面的<script>标签

            //用jQuery实现AJAX请求提交数据到服务器端
            //保存数据到服务器,成功时控制台打印显示信息
            var selectListTest = new Array();
            selectListTest[0] = "param1";
            selectListTest[1] = "param2";
            selectListTest[2] = "param3";
            $.ajax({
                    type:"POST",
                    url:"${pageContext.request.contextPath}/product/delete.do",
                    contentType:"application/json",//jQuery的ajax提交数组使得springMVC使用必填参数
                    //接收用@requestBody
                    data:JSON.stringify(selectListTest),  //数组通过JSON.stringify格式化
                    success:function (data) {
                        alert(data);
                    }

                });

视图层Controller类的Method

    //删除产品的某个分类通过产品编号
    @RequestMapping("/delete.do")
    @ResponseBody
    public String deleteByNum(@RequestBody List<String> selectListTest)throws Exception{
        System.out.println( "JSP页面通过AJAX技术提交POST请求的路径找到。" );
        //        productService.deleteByNum(product);

            System.out.println( selectListTest );
        System.out.println( "JSP页面通过AJAX技术提交字符串数组成功实现。" );

            return"redirect:findAll.do";
    }

总结一下,解决该问题需注意一下三点:

1.  使用jackson依赖jar包。

2.  jQuery的 $.ajax() 里面需要对JSP页面里的字符串数组提交之前格式化。

var testList=[‘1‘,‘2‘,‘3‘];
$.ajax({
     type: "post",
     url: "${pageContext.request.contextPath}/product/delete.do",
     contentType:"application/json",
     data:JSON.stringify(testList),
     success: function(obj){
         alert(obj.description);
     },
     error: function(obj){
         alert("操作出错");
         return false;
     }
});

3. Controller控制层AJAX请求的调用的方法需在参数前加 @RequestBody注解。

  

public void method(@RequestBody List<String> testList) {

  return;}

==================end

参考资料:

关于Ajax请求传递数组参数的解决办法


SpringMVC在使用JSON时报错信息为:Content type 'application/json;charset=UTF-8' not supported

原文地址:https://www.cnblogs.com/MarlonKang/p/11563851.html

时间: 2024-11-03 14:28:07

SpringMVC在使用JSON时报错信息为:Content type 'application/json;charset=UTF-8' not supported的相关文章

Spring MVC 前后台传递json格式数据 Content type &#39;application/x-www-form-urlencoded;charset=UTF-8&#39; not supported

报错如下: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported 解决方案: 引入如下包: 问题既解决. Spring MVC 前后台传递json格式数据 Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported

org.springframework.web.HttpMediaTypeNotSupportedException: Content type &#39;application/json;charset=UTF-8&#39; not supported或其他Content type不支持处理

很久没从头到尾搭框架,今天搭的过程中,springmvc controller方法入参用@RequestBody自动绑定参数时一直提示各种 not supported 排查问题有两个解决路径: 1)使用post协议提交时,请检查Content type类型,如: $.ajax({ type: "POST", contentType: "application/json;charset=UTF-8", url: "/reg", data: JSON

org.springframework.web.HttpMediaTypeNotSupportedException: Content type &#39;application/json;charset=UTF-8&#39; not supported

踩到了一个神坑,明明@RequestMapping注解并没有设置consumes,即没有限定请求参数的类型.却出现文章底部的错误,原因竟然是同一个model下注解了两个@JsonBackReference. @Entity // 用户 public class User extends IDomain { @Column(columnDefinition = "varchar(255) comment '[电话]'") private String phone; @Column(col

Entity中Lazy Load的属性序列化JSON时报错

The server encountered an internal error that prevented it from fulfilling this request.org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON: failed to lazily initialize a collection of role: com.party.dinner.entit

解决“Resource interpreted as Document but transferred with MIME type application/json”问题

在上传图片时,使用ajax提交,返回的数据格式为json.在测试时发现IE浏览器中,上传图片后,没有显示图片,而是弹出一个提示:是否保存UploadImg.json文件:而在其他浏览器中正常. 在Chrome中调试后发现,图片上传成功后,浏览器给出了一个警告:Resource interpreted as Document but transferred with MIME type application/json. 原来后台代码在返回json数据时,响应数据的ContentType默认为"a

ajax 发送json数据时为什么需要设置contentType: &quot;application/json”

1. ajax发送json数据时设置contentType: "application/json"和不设置时到底有什么区别? contentType: "application/json",首先明确一点,这也是一种文本类型(和text/json一样),表示json格式的字符串,如果ajax中设置为该类型,则发送的json对象必须要使用JSON.stringify进行序列化成字符串才能和设定的这个类型匹配.同时,对应的后端如果使用了Spring,接收时需要使用@Req

ajax发送json数据时为什么需要设置contentType: &quot;application/json”

1. ajax发送json数据时设置contentType: "application/json”和不设置时到底有什么区别?contentType: "application/json”,首先明确一点,这也是一种文本类型(和text/json一样),表示json格式的字符串,如果ajax中设置为该类型,则发送的json对象必须要使用JSON.stringify进行序列化成字符串才能和设定的这个类型匹配.同时,对应的后端如果使用了Spring,接收时需要使用@RequestBody来注解

Resource interpreted as Document but transferred with MIME type application/json

转自:https://blog.csdn.net/just_lover/article/details/81207472 我在修改并保存后,界面返回提示“undifine”,实际我是看到有返回提示的.控制台输出的是“Resource interpreted as Document but transferred with MIME type application/json ” 检查发现我在修改的时候并没有上传文件, 而表单的表头是<form id="dialogform" me

scala 2.11报错error: not found: type Application

FROM: http://j-q-j.org/scala/scala-2-11-application-error.html 这两天学习scala,官网下载的最新版本2.11,书用的是<Programming in scala>,看到类和对象,这一章最后一段代码 1 2 3 4 5 import ChecksumAccumulator.calculate object FallWinterSpringSummer extends Application {   for (season <