I would like to select only specific columns (ex. SELECT a FROM b
). I have a generic DAO and what I came up with is:
public List<T> getAll(boolean idAndVersionOnly) {
CriteriaBuilder builder = manager.getCriteriaBuilder();
CriteriaQuery<T> criteria = builder.createQuery(entityClazz);
Root<T> root = criteria.from(entityClazz);
if (idAndVersionOnly) {
criteria.select(root.get("ID").get("VERSION")); // HERE IS ERROR
} else {
criteria.select(root);
}
return manager.createQuery(criteria).getResultList();
}
And the error is:
The method select(Selection<? extends T>) in the type CriteriaQuery<T> is not applicable for the arguments (Path<Object>)
. How should I change that? I want to get a type T
object that has only ID
and VERSION
fields, and all others are null
.
Type T
extends AbstractEntity
which has those 2 fields.
entityClazz
is T.class
.