我正在使用以下代码,并且对以下几行有类型安全警告,
Type safety: Unchecked cast from Root<capture#5-of ?> to Root<T>
Type safety: Unchecked cast from CriteriaQuery<capture#4-of ?> to CriteriaQuery<T>
有没有办法在不添加抑制的情况下避免它?
CriteriaQuery<T> criteriaQuery = (CriteriaQuery<T>) criteriaBuilder.createQuery(classReferance);
Root<T> rootObj = (Root<T>) criteriaQuery.from(classReferance);