Skip to content

Latest commit

 

History

History

springboot-restful

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Spring boot实现RESTful API接口

知识点:

  • 解决JSON返回死循环问题
  • 统一的基础返回类

测试

出现过的异常

异常:Could not write JSON: Infinite recursion (StackOverflowError)
原因:返回的json数据死循环
解决方法:在父类get方法添加 @JsonManagedReference 子类get方法添加 @JsonBackReference
异常:Cannot deserialize instance of
原因:参数为List 少用了 [] 
解决方法: 在入参值上面添加 []

参考链接