Specifying whether or not to lazily load with Spring Data(指定是否延迟加载 Spring Data)
问题描述
我在实体中有一个惰性获取类型集合.我正在使用 Spring Data (JpaRepository) 来访问实体.
@Entity公共类家长{@ID私人长ID;@OneToMany(mappedBy = "parentId", fetch = FetchType.LAZY)私人套装<孩子>孩子们;}
我想要服务类中的两个函数,当前实现如下:
children"在获取父级时应该为空
public Parent getParent(Long parentId){返回 repo.findOne(parentId);}
children"取parent时要填写:
public Parent getParentWithChildren(Long parentId){父 p = repo.findOne(parentId);Hibernate.initialize(p.children);返回 p;}
当从 RestController 返回父"实体时,抛出以下异常:
@RequestMapping("/parent/{parentId}")public Parent getParent(@PathVariable("parentId") Long id){Parent p= parentService.getParent(id);//到这里为止return p;//转换为JSON时抛出的错误}
<块引用>
org.springframework.http.converter.HttpMessageNotWritableException:无法写入内容:未能延迟初始化集合角色:com.entity.Parent.children,无法初始化代理 - 否会话(通过引用链:com.entity.Parent["children"]);嵌套异常是com.fasterxml.jackson.databind.JsonMappingException: 懒惰失败初始化角色集合:com.entity.Parent.children,不能初始化代理 - 无会话(通过引用链:com.entity.Parent["children"])
如果您希望根据用例允许同一域模型的不同 JSON 表示,那么您可以查看以下内容,您可以这样做所以不需要 DTO:
https://spring.io/博客/2014/12/02/latest-jackson-integration-improvements-in-spring
或者,另请参阅下面的Spring Data REST 中的投影"部分
https://spring.io/blog/2014/05/21/what-s-new-in-spring-data-dijkstra#projections-in-spring-data-rest
I have a lazy fetch type collection in an entity. And I am using Spring Data (JpaRepository) for accessing the entities.
@Entity
public class Parent{
@Id
private Long id;
@OneToMany(mappedBy = "parentId", fetch = FetchType.LAZY)
private Set<Child> children;
}
I want two functions in service class and current implementation are as following:
"children" should be null when fetching parent
public Parent getParent(Long parentId){ return repo.findOne(parentId); }
"children" should be filled when fetching parent:
public Parent getParentWithChildren(Long parentId){ Parent p = repo.findOne(parentId); Hibernate.initialize(p.children); return p; }
When returning "Parent" entity from a RestController, following exception is thrown:
@RequestMapping("/parent/{parentId}")
public Parent getParent(@PathVariable("parentId") Long id)
{
Parent p= parentService.getParent(id);//ok till here
return p;//error thrown when converting to JSON
}
org.springframework.http.converter.HttpMessageNotWritableException: Could not write content: failed to lazily initialize a collection of role: com.entity.Parent.children, could not initialize proxy - no Session (through reference chain: com.entity.Parent["children"]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: failed to lazily initialize a collection of role: com.entity.Parent.children, could not initialize proxy - no Session (through reference chain: com.entity.Parent["children"])
If you are looking to allow for different JSON representations of the same domain model depending on use case, then you can look at the following which will allow you to do so without requiring DTOs:
https://spring.io/blog/2014/12/02/latest-jackson-integration-improvements-in-spring
Alternatively, see also the 'Projections in Spring Data REST' section in the following
https://spring.io/blog/2014/05/21/what-s-new-in-spring-data-dijkstra#projections-in-spring-data-rest
这篇关于指定是否延迟加载 Spring Data的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:指定是否延迟加载 Spring Data


基础教程推荐
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 多个组件的复杂布局 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 从 python 访问 JVM 2022-01-01