JPA: Join Fetch results to NULL on empty many side(JPA:在空的多方面将 Fetch 结果加入 NULL)
问题描述
我在 User 和 GameMap 之间有一对多的关系.一个用户可以拥有多张地图.
I have a one to many relationship between User and GameMap. One user can have many maps.
用户类别:
// LAZY LOADED
@OneToMany(cascade = CascadeType.ALL, mappedBy = "creater")
private final List<GameMap> maps = new ArrayList<>();
但是,有时我需要预先加载地图.为了避免在关闭 Session 后出现 LazyInitializationException,我有两种检索用户的变体.
However, sometimes I need to eager load the maps. To avoid the LazyInitializationException after closing Session, I have two variants of retrieving Users.
用户存储库:
public interface UserRepository extends JpaRepository<User, Long> {
Optional<User> findById( Long id );
@Query("SELECT u FROM User u JOIN FETCH u.maps WHERE u.id = (:id)")
public User findByIdEagerFetch( @Param("id") Long id );
}
问题:
但是,JPQL JOIN FETCH 变体可以一次性立即加载用户,并且他的地图返回 NULL 用户如果表中没有此用户的地图.
问题:
我如何重写 JPQL 语句以检索用户和可选(!)他的所有地图,但如果没有地图,那没关系,但不要返回 NULL 用户.
Question:
How can I rewrite the JPQL statement in order to retrieve the user and optionally(!) all his maps but if there are no maps, than thats okay, but dont return a NULL user.
推荐答案
FETCH JOIN
实际上会解析为 SQL 中的 inner 连接.这意味着 User
表中没有映射的任何记录/实体都将从结果集中删除.您需要 FETCH JOIN
上的 LEFT
关键字来获得所有结果,即使是没有地图的结果.
A FETCH JOIN
actually will resolve to an inner join in SQL. This means that any records/entities in the User
table which have no maps will be removed from the result set. You need the LEFT
keyword on your FETCH JOIN
to get all the results, even those without a map.
@Query("SELECT u FROM User u LEFT JOIN FETCH u.maps WHERE u.id = (:id)")
public User findByIdEagerFetch( @Param("id") Long id );
这篇关于JPA:在空的多方面将 Fetch 结果加入 NULL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JPA:在空的多方面将 Fetch 结果加入 NULL
基础教程推荐
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01