位置:- 正文

org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representatio(org.springframework.web.server)

编辑:rootadmin
org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representatio

推荐整理分享org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representatio(org.springframework.web.server),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:org.springframework.web.client,org.springframework.web.util,org.springframework.web.bind,org.springframework.web.util,org.springframework.web.client,org.springframework.web.client,org.springframework.web.socket,org.springframework.web.util,内容如对您有帮助,希望把文章链接给更多的朋友!

封装springboot返回值+枚举出现org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation

代码实现

1.定义返回值类ResultData

public class ResultData { private String code; private String message; private java.util.List<Object> List; public ResultData(String code, String message, java.util.List<Object> list) { this.code = code; this.message = message; List = list; } public ResultData(CTPEnum retsuccess, ArrayList<Object> list) { this.code = retsuccess.getCode(); this.message = retsuccess.getMessage(); List = list; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public java.util.List<Object> getList() { return List; } public void setList(java.util.List<Object> list) { List = list; }}

2.定义枚举类CTPEnum

public enum CTPEnum { PARAMETER("0001","参数为空"), RETURNDATA("0002","数据为空"), ok("ok","成功"); private String code; private String message; CTPEnum(String code, String message) { this.code=code; this.message=message; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; }}

3.定义请求controller

@RestControllerpublic class TestController { // @CrossOrigin(origins = {"http://localhost:8081", "null"}) @RequestMapping("/hello") public ResultData hello() { System.out.println("4444"); HashMap<Object, Object> hashMap = new HashMap<>(); ArrayList<Object> list = new ArrayList<>(); hashMap.put("name","liu"); hashMap.put("pk","0000001"); list.add(hashMap); ResultData resultData = new ResultData(CTPEnum.ok, list); return resultData; }

}

org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representatio(org.springframework.web.server)

4.启动程序

5.发送请求

6.问题+解决

Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation]

解决方法一:封装的返回类ResultData中没有加set个get方法,加上就可以了。

解决方法二:封装的返回类ResultData上加上@Data注解。

1.在pom.xml中加入lombok依赖

<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.4</version></dependency>

2.在ResultData类上加上@Data注解

本文链接地址:https://www.jiuchutong.com/zhishi/297332.html 转载请保留说明!
下一篇链接:https://www.jiuchutong.com/zhishi/297333.html
免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

鄂ICP备2023003026号

友情链接: 武汉网站建设 电脑维修 湖南楚通运网络