Could not find acceptable representation】的更多相关文章

问题:在springmvc中添加Jackson jar包返回Object类型,处理器方法的produces属性不写,默认根据类型,但如果指定了(错误原因)produces = "text/html;charset=utf-8"就会报错 错误码: Handler execution resulted in exception: Could not find acceptable representation 正确配置: @RequestMapping(value = "/jac…
org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representatio     org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation at org.springframework.web.servlet.mvc.meth…
异常信息 org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConv…
在项目中调用一个第三方服务,第三方服务是用Spring Boot写成的.结果调用时返回"Could not find acceptable representation"错误. 经过调查和搜索,除了网上查到的其他方案之外,有可能是客户端Header参数Accept没有设置或者Accept设置的值在服务端不支持导致的,例如服务端自定义Accept值,而客户端没有传:或者传错了.…
=================实体类转JSON报错的解决办法============= 之前在springmvc的时候也报过这个错,原因以及springmvc中解决办法参考:https://www.cnblogs.com/qlqwjy/p/8722802.html 今天在springboot中同样遇到这个错. 错误分析:后台返回的数据格式是json的时候,格式化实体类报错,如下: @RequestMapping("doLogin") @ResponseBody public JSO…
[原创文章]        使用Spring Boot的Web项目,处理/login请求的控制器方法(该方法会返回JSON格式的数据).此时如果访问localhost:8080/login.html,用户期望返回jsons数据,但框架却报错: There was an unexpected error (type=Not Acceptable, status=406). Could not find acceptable representation 或者这样的异常信息: org.springf…
转自:https://blog.csdn.net/mate_ge/article/details/93518286?utm_source=distribute.pc_relevant.none-task 今天在实现响应输出流下载模板文件时,虽然功能正常,但是后台一直报错: org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation 截图 在导出excel…
环境 Java 1.8 SpringBoot 2.1.9 Java 接口代码 @ResponseBody @RequestMapping(value = "cloud", method = RequestMethod.GET,produces = "applications/json;charset=UTF-8") public Boolean queryItemInfoAllInCloud(){ ItemInfo itemInfo = itemService.qu…
引起的原因:    由于设置了@ResponseBody,要把对象转换成json格式,缺少转换依赖的jar包,故此错. 解决办法: <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> </dependency> <dependency> <groupId>org.codeha…
使用SpsringMVC,使用restEasy调试,controller请求设置如下: @RequestMapping(value="/list",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE) @ResponseBody public List<EditTimeout> list(){ List<EditTimeout> list = editImpl.selectAll(…
[转]今天在调试springMVC的时候,在将一个对象返回为json串的时候,浏览器中出现异常: The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers (). 从网上查了下,说是让配置下json转化bean: <bean…
今天在调试springMVC的时候,在将一个对象返回为json串的时候,浏览器中出现异常: The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers (). 从网上查了下,说是让配置下json转化bean: <bean cla…
可以关注微信公众号springboot或者可以加入 Spring Boot QQ交流群1:193341332 (群已满) Spring Boot QQ交流群2:193341364 微信公众号搜索springboot或者扫描以下二维码即可关注,您从中可以: 1.可以得到博客更新的通知: 2.在手机端可以利用碎片时间学习Spring Boot; 3.可以在公众号留言,博主看到会进行解答(如果问题复杂,可以提供邮箱): 4.之后,博主会推送一些Spring Boot的资讯或者优秀的Spring Boo…
1.在写我的springmvc demo时,由于要向前台返回相关信息,于是设置了@ResponseBody,但是要把对象转换成json格式,我却没有在xml文件里配置,所以报如下错误:HttpMediaTypeNotAcceptableException: Could not find acceptable representation.于是采用默认配置,即曾经号称“史上最快json”的Jackson <!-- 启用spring mvc 注解--> <mvc:annotation-dri…
本文转载自 http://www.ietf.org/rfc/rfc3261.txt 中文翻译可参考 http://wenku.baidu.com/view/3e59517b1711cc7931b71654.html Network Working Group J. Rosenberg Request for Comments: 3261 dynamicsoft Obsoletes: 2543 H. Schulzrinne Category: Standards Track Columbia U.…
由于万恶的Spring MVC 默认返回编码 是 ISO-8859-1, 使用如下配置, 可以将编码专为UTF-8, <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="messageConverters"> <list> <bean class="o…
今日大纲 实现单点登录系统 基于单点登录系统实现,用户的注册和登录 商品数据同步问题 问题 后台系统中将商品修改,前台系统没有进行数据的同步,导致前端系统不能够实时显示最新的数据. 解决 后台系统中商品修改后向其他系统发送通知,其他系统做出对应的处理即可. 图解: 怎么通知? 在前台系统中开发一个接口 在后台系统中调用该接口 ApiService移动至taotao-common 实现数据同步存在的问题 通知的实现,代码的耦合度太高了. 怎么解决? -- 使用消息队列解决(MQ). 单点登录系统…
背景: 最近项目中使用SpringMVC,需要从前端接收JSON格式的请求,在后端自动转成一个与JSON格式相同的对象. 由于是一个老项目,Spring的版本是3.2.7. 问题1:POST or GET 这个请求,是一个计算类型的请求,不涉及数据的修改,从意义上来说的角度应该是一个 GET 请求. 但是请求报文设计时要求高度的灵活性,传递的属性都是以 kind-value 形式,如: {    "kind":"premium",    "value&qu…
承接前文SpringMVC源码情操陶冶-HandlerAdapter适配器简析.RequestMappingHandlerAdapter适配器组件是专门处理RequestMappingHandlerMapping返回的HandlerMethod对象,由此对象返回相应的视图对象或者直接返回数据给客户端 RequestMappingHandlerAdapter的xml配置应用 常用的针对handlerAdapter适配器的配置如下 <mvc:annotation-driven> <!--对直…
一.SpringBoot入门 今天在慕课网中看见了Spring Boot这么一个教程,这个Spring Boot作为JavaWeb的学习者肯定至少会听过,但我是不知道他是什么玩意. 只是大概了解过他是用起来很方便,不用什么配置的.于是我就花了点时间去跟着学习了. 视频地址:http://www.imooc.com/learn/767 教程中的代码:https://gitee.com/liaoshixiong/girl 1.1SpringBoot启动 在教程中,启动SpirngBoot有三种方式:…
Spring MVC 4 RESTFul Web Services CRUD Example+RestTemplate Created on:  August 11, 2015  | Last updated on:  March 12, 2017   websystiqueadmin In this post we will write a CRUD Restful WebService using Spring MVC 4, and write a REST client with Rest…
Spring boot为错误视图提供了如下错误属性:timestamp:错误发生的时间status:HTTP状态码error:错误原因exception:异常的类名message:异常消息(如果这个错误是由异常引起的)errors:BindsResult异常里的各种错误(如果这个错误是由异常引起的)trace:异常跟踪信息(如果这个错误是由异常引起的)path:错误发生时请求的URL路径 test To switch it off you can set server.error.whitela…
前言最近在和三方对接的时候发现了一些问题,这也是我写这篇文章的原因.我大概花了三天时间把这些内容了解,实践,整理,然后分享给大家,希望对大家会有所帮助.废话不多说,在和三方对接的时候我们规定使用json作为通信数据格式,而有些三方定义Content-Type而有些就不定义,这样导致我后台定义的一些接口他们无法访问,所以我自己就动手做了些实验.这篇博文的目录为:前言-结论-实验-讲解-总结五大块.之所以把讲解放后面是因为先让大家看结果,然后自己带着思考去看讲解,而且有些人只想看实验这样也不会让费大…
===========================freemarker=================================== freemarker 官网:https://freemarker.apache.org/ freemarker starter: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-free…
很简单的一个东西,这里就不做过多介绍了,写一个小Demo,随手记录下. 首先,在搭好SpringMVC工程环境之后,如果想用Spring自带的Json,需要额外的添加2个JAR包: 1.jackson-core-asl-1.9.9.jar 2.jackson-mapper-asl-1.9.9.jar 我这里使用的是Maven,也相对应的给出pox.xml <dependency> <groupId>org.codehaus.jackson</groupId> <a…
http://jadethao.iteye.com/blog/1926525 —————————————————————————————————————————————————————————————————— 使用SpsringMVC,使用restEasy调试,controller请求设置如下: @RequestMapping(value="/list",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALU…
jackson-core-asl-1.9.0.jar,jackson-mapper-asl-1.9.0.jar两个包 并且在controller中有如下代码 @RequestMapping(value="/getList") @ResponseBody public Map<String, Object> getList(){ List<Text> list=biz.queryList(); Map<String, Object> map=new H…
问题背景:调用http的post接口返回一个String类型的字符串时中文出现乱码,定位出问题后在@RequestMapping里加produces注解produces = "application/json;charset=utf-8",再次请求http报406,代码发现spring抛出异常:org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representa…
此文已由作者易国强授权网易云社区发布. 欢迎访问网易云社区,了解更多网易技术产品运营经验. 自定义视图解析 在默认情况下Spring Boot 的MVC框架使用的视图解析ViewResolver类是ContentNegotiatingViewResolver,这个解析器比较智能,它会根据你的请求类型(一般以请求uri的后缀来区分或请求头的Accept得到)来自动选择返回的数据文档类型. 一般情况下,这个能满足大部分人的使用需求,但我们这里只是需要提供RESTful接口的话,那么这个解析规则就不太…
首先.单独使用ControllerAdvice 无法正常工作.需要配合@EnableWebMvc 使用. @ControllerAdvice @EnableWebMvc pulbic class ExceptionControllerAdvice{ @ExceptionHandler(NotFoundException.class) @ResponseBody public Map<String,Object> notFoundExc(NotFoundException exc,HttpSer…