Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation]
这种报错原因:类中没有getter和setter方法造成的。。。。。。。。。。。。。
Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable ···
Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation]这种报错原因:类中没有getter和setter方法造成的。。。。。。。。。。。。。
含义:找不到可接受的代理
原因:出现这个异常主要是客户端请求期望响应的媒体类型与服务器响应的媒体类型不一致造成的。例如客户端希望返回的媒体类型是json对象(application/json),服务器返回的媒体类型是一个普通的json字符串(text/plain);又或者是客户端希望返回的是html页面,服务器返回的却是json对象。
客户端(前端)的解决
在请求头添加多种媒体类型,...
Resolved
[
org
.
springframework
.
web
.
Http
Media
TypeNotAcce
pta
ble
Exception
: Could not find
acce
pta
ble
representation
这时候前台一般也会出现406错误
这个错有很多出现错误的场景,网上有很多相关解决办法,但是很多都是用的老版本,对新版本的springMVC不怎么管用,而且有的说修改pom.x...
@
Exception
Handler({
Exception
.class})
@ResponseStatus(
Http
Status.OK)
public BaseResult ErrorHandler(
Exception
ex) {
log.info("异常信息如下:牛逼");
return BaseResult.fail().setMessage(ex.getMessage());
然后我发现我明明
下载功能参考链接 :
http
s://dzone.com/articles/java-springboot-rest-api-to-uploaddownload-file-on
今天准备用 spring boot 写个简单的下载文件的功能,网上找了个下载文件的代码拷过来,下载的时候结果发现报错了。
1. 下面是完整的下载代码:
package com.example.demo.controller;
import
org
.
springframework
.core.io.Resource;
import o
Spring Boot:
Http
Media
TypeNotAcce
pta
ble
Exception
: Could not find
acce
pta
ble
representation原因及解决方法
resolved
[
org
.
springframework
.
web
.
http
requestmethodnotsupported
exception
: request method 'put' not supported]