java-8.md

July 15, 2021 · View on GitHub

Bookmarks tagged [java-8]

www.codever.land/bookmarks/t/java-8

Java libraries I like – Eduards Sizovs

https://sizovs.net/2020/11/24/java-libraries-i-like/

The list was updated in 2020.

Everyone knows Spring and Hibernate, but there are other libraries and frameworks that are worth your attention. I pulled a list of 36 Java libraries that I like and use...


winterbe/java8-tutorial: Modern Java - A Guide to Java 8

https://github.com/winterbe/java8-tutorial#lambda-expressions

Welcome to my introduction to Java 8. This tutorial guides you step by step through all new language features. Backed by short and simple code samples you'll learn how to use default interface methods...


Bean Validation 2.0 - you’ve put your annotations everywhere! by Gunnar Morling - 14min

https://www.youtube.com/watch?v=GdKuxmtA65I

Bean Validation 2.0 is out and the theme is Java 8. That’s a good thing since Java 8 brings not only new types to validate but also new locations to put annotations on.

We took that round to add usef...


Method References (The Java™ Tutorials)

https://docs.oracle.com/javase/tutorial/java/javaOO/methodreferences.html

You use lambda expressions to create anonymous methods. Sometimes, however, a lambda expression does nothing but call an existing method. In those cases, it's often clearer to refer to the existing me...