大家好,我最近使用Spring boot做REST API遇到个问题
在使用Spring的RestController让method直接return一个物件
Spring会自动把物件转为JSON String送给client
但我的JPA物件因为有关连的关系
Class A会指向Class B,Class B也会只回Class A
所以物件被展开成JSON String时就没完没了直到Exception了..
使用套件:
spring-boot-starter-web
spring-boot-starter-data-jpa
spring-boot-devtools
我用个范例来描述我的问题
@Entity
public class Type{
@id
private String name;
@OneToMany(mappedBy="type")
private List<Content> contents;
// getter and setter
}
@Entity
public class Content{
@Id
private String name;
@ManyToOne
private Type type;
// getter and setter
}
@RestController
public class Controller{
// @Autowired something...
@GetMapping("/show-types")
public Interable<Type> showTypes(){
return typeDao.findAll();
}
}
基本上就是Type里面纪录的很多Content
但为了存到数据库里有关联,Content也可以指回去自己属于哪个Type
所以透过网址呼叫/show-types时
Spring展开了Type发现有Content,就展开了Content
展开Content时又发现有Type,所以又展开了Type...
一直持续下去,然后就当了XD
想请问有什么办法让Spring展开到Content后就忽略里面的type field
或是有其他方法能解决掉这个无限递回的问题?
谢谢!