Spring MVC的Json转换异常
今天在做Spring MVC的时候,出现了这么一个错误
No serializer found for class org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS) ) (through reference chain: ***************_$$_javassist_15["hibernateLazyInitializer"])
Class Order{ @ManyToOne( fetch = FetchType.LAZY) @JoinColumn(name = "Item_ID") Item item;}
Class Order{ @ManyToOne( fetch = FetchType.LAZY) @JoinColumn(name = "Item_ID") @JsonIgnore Item item;}