我在MongoDB中使用Spring Data。
我有以下对象:
500 error
当我尝试使用以下方法返回此对象时,我在浏览器控制台中收到@RequestMapping(value = "/contactNotifications", method = RequestMethod.GET)
@ResponseBody
public List<Notification> getContactNotifications() {
List<Notification> notifications = notificationService.findByUser(user.getId());
return notifications;
}
,我看不到任何数据。
lazy=true
但是,如果我删除lazy=true
,它似乎确实有效。
如何在使用{{1}}时解决此问题?