问题 I've a project with Spring Boot 1.5.7, Spring Data REST, Hibernate, Spring JPA, Swagger2. I've two beans like these: @Entity public class TicketBundle extends AbstractEntity { private static final long serialVersionUID = 404514926837058071L; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<Note> notes = new ArrayList<>(); ..... } and @Entity public class Note extends AbstractEntity { private static final long serialVersionUID = -5062313842902549565L; @Lob private