Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Hibernate Basics Persisting Data with Hibernate Fetching Data with Hibernate

Linda de Haan
Linda de Haan
12,413 Points

[SOLVED] createCriteria() is deprecated

I found a solution for the deprecated createCriteria() method. Instead of using the Criteria object, use CriteriaQuery. The complete updated fetchAllContacts() method looks like this:

    private static List<Contact> fetchAllContacts() {
        // Open a session
        Session session = sessionFactory.openSession();

        // Create Criteria object
        CriteriaQuery<Contact> criteriaQuery = 
session.getCriteriaBuilder().createQuery(Contact.class);
        criteriaQuery.from(Contact.class);

        // Get a list of Contact objects according to the Criteria object
        List<Contact> contacts = session.createQuery(criteriaQuery).getResultList();

        // Close the session
        session.close();

        return contacts;
    }

1 Answer

the package for this CriteriaQuery is javax.persistence.criteria.CriteriaQuery;