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
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01