How to use select straight_join ... from ... in hibernate/jpa?
select straight_join ... from ...
There is no straight_join for JPQL/JPA.
You will need to use it in NativeQuery.
entityManager.createNativeQuery(...);