I would like to use the @QueryHint(name=QueryHints.BATCH, value="pi.jrnls") annotation together with the primary key @Id lookups. Where do I put the annotation? It looks like I can only put it inside a @NamedQuery. But the default pk lookup does not have a @NamedQuery of course.
@Entity
@Table(schema="prd", name="PRDITEM", uniqueConstraints= {@UniqueConstraint(columnNames= {"prditmNO"})})
@Cache(expiry=com.quoka.qis.lib.persistence.Constants.SHORT_CACHE_PERIODE_MS)
@NamedQuery(name = "PrdItem.findByNo", query = "select pi from PrdItem pi where pi.no = ?1",
hints={
@QueryHint(name=QueryHints.BATCH, value="pi.jrnls"),
@QueryHint(name=QueryHints.BATCH, value="pi.bookings")//,
}
)
public class PrdItem {....
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="prditmID", insertable = false, nullable=false, unique=true)
private Long id;