经过搜索,我知道 JPQL 中没有 Right Join。我看到还有另一种使用 JPA 双向实现它的方法(不是右连接,而是使用 pojo 对象),但我在控制台中注意到它对数据库进行了多次调用,例如见下表。
Flat Table UserToFlat User
| Flat_ID | Flat No | | ID | Flat_ID | User_ID | | User_ID | Name |
| 1 | 101 | | 1 | 1 | 1 | | 1 | XYZ |
| 2 | 102 | | 2 | 2 | 2 | | 2 | PQR |
| 3 | 103 | | 3 | 3 | 3 | | 3 | ABC |
| 4 | 104 |
我想要平面表中的所有行,并且只想要用户表中的匹配行
// below query do not work as flat is having primary key and usertoflat having foreign key
select f, u from FlatEntity f left join f.userToFlatEntity uf join uf.user u;
// now if I try right join then jpql throws exception
select f from UserToFlatEntity uf right join uf.flatEntity f;
现在,如果我使用 jpql birectional 并使用对象获取例如
// suppose I have FlatEntity Object
flatEntity.getUserToFlatEntity();
上面的代码将在 where condition flat_ID = ? (在这种情况下是 4 次),我认为这不是很好的表现。
那么有什么方法可以让 JPQL 在不影响性能的情况下实现正确的连接。
实体配置
public class FlatEntity {
@OneToOne(mappedBy = "flatEntity")
private UserToFlatEntity userToFlatEntity;
// getter setter
}
public class UserToFlatEntity {
@ManyToOne
@JoinColumn(name = "flatId", insertable = false, updatable = false)
private FlatEntity flatEntity;
}
public class UserEntity {
@OneToMany(mappedBy = "userEntity")
private Set<UserToFlatEntity> userToFlatEntitySet;
}
Exception
Path expected for join!
at org.hibernate.hql.internal.ast.HqlSqlWalker.createFromJoinElement(HqlSqlWalker.java:369)