Struggling to write the following query using JPA.
Oracle Query:
Select * from table1 s
where exists (Select 1 from table2 p
INNER JOIN tab
I will answer the example of the simple car advertisement domain (advert, brand, model) using JpaRepository, JpaSpecificationExecutor, CriteriaQuery, CriteriaBuilder:
Entities:
@Entity
public class Brand {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
@OneToMany(mappedBy = "brand", fetch = FetchType.EAGER)
private List models;
}
@Entity
public class Model {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
@ManyToOne
@JoinColumn(name = "brand_id")
private Brand brand;
}
@Entity
public class Advert {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@ManyToOne
@JoinColumn(name = "model_id")
private Model model;
private int year;
private int price;
}
Repository:
public interface AdvertRepository
extends JpaRepository, JpaSpecificationExecutor {
}
Specification:
public class AdvertSpecification implements Specification {
private Long brandId;
public AdvertSpecification(Long brandId) {
this.brandId = brandId;
}
@Override
public Predicate toPredicate(Root root,
CriteriaQuery> query,
CriteriaBuilder builder) {
Subquery subQuery = query.subquery(Model.class);
Root subRoot = subQuery.from(Model.class);
Predicate modelPredicate = builder.equal(root.get("model"), subRoot.get("id"));
Brand brand = new Brand();
brand.setId(brandId);
Predicate brandPredicate = builder.equal(subRoot.get("brand"), brand);
subQuery.select(subRoot).where(modelPredicate, brandPredicate);
return builder.exists(subQuery);
}
}
Effect is this Hibernate SQL:
select advert0_.id as id1_0_,
advert0_.model_id as model_id5_0_,
advert0_.price as price3_0_,
advert0_.year as year4_0_
from advert advert0_
where exists (select model1_.id from model model1_
where advert0_.model_id=model1_.id
and model1_.brand_id=?)