Попытка параметризации Query.
импортированный org.hibernate.Query, но показывает :: "Тип Query не является универсальным; его нельзя параметризировать с помощью аргументов"
import java.util.List;
import org.hibernate.Query;
import org.hibernate.Session;
@Repository
public class Associate_DAO_imp implements Associate_DAO {
@Autowired
private SessionFactory sessionFactory;
public List<Associate> getAssociates() {
Session currentSession = sessionFactory.getCurrentSession();
Query<Associate> query = currentSession.createQuery("from
Table_3",Associate.class); //
List<Associate> list = query.getResultList();
return list;
}
public List<Associate> getAssociateByID(Associate associate) {
Session currentSession = sessionFactory.getCurrentSession();
Query<Associate> query = currentSession.createQuery("from Table_3
where AssociateId=:AssociateId");
query.setParameter("AssociateId", associate.getAssociateId());
List<Associate> list = query.getResultList();
return list;
}`