How To Load Multiple Entities By Id Via Specification
Description: This is a SpringBoot application that loads multiple entities by id via a @Query based on the IN operator and via Specification.
Key points:
- for using the
INoperator in a@Querysimply add the query in the proper repository - for using a
Specificationrely onjavax.persistence.criteria.Root.in()

