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

cdlvr
cdlvr
14,448 Points

Use Collection.forEach() instead of Collection.stream().forEach()

The video uses fetchAllContacts().stream().forEach(System.out::println); to replace the for loop with a functional equivalent. However, fetchAllContacts().forEach(System.out::println); is both more succinct and more reliable. In general, if you simply need to iterate over a collection, use Collection.forEach() rather than Collection.stream().forEach(). Collection.forEach() produces a reliable iteration order and will fail faster if you do something bad.

See https://www.baeldung.com/java-collection-stream-foreach for more info