blockchain-application-using-fabric-java-sdk – This code pattern demonstrates to create, deploy and test a blockchain network using hyperledger fabric sdk java.
Category: Home
Docker for Java Developers | Udemy
Learn how you can use Docker to supercharge your enterprise Java Development!
Refactoring to Eclipse Collections: Making Your Java Streams Leaner, Meaner, and Cleaner
Eclipse Collections is a high performance collections framework for Java, adding rich functionality to the native JDK Collections.In this article, key framework contributors demonstrate techniques for refactoring standard Java code to Eclipse Collections data structures and APIs, and also demonstrate some of the memory savings you can achieve.
IntelliJ IDEA 2018.2 Goes Beta | IntelliJ IDEA Blog
Posted on June 26, 2018 by Zlata Kalyuzhnaya IntelliJ IDEA 2018.2 Beta is ready for download ! It’s the perfect time to try out al….
How well do you know your JavaFX trivia? – JAXenter
We’re continuing our weekly programming pub quiz with JavaFX! How well do you know this platform for creating and deploying Java apps?
3 Things Every Java Developer Should Stop Doing – DZone Java
Let’s examine returning null, defaulting to functional programming, and poor use of getters and setters to see the problems they cause and how you can fix them.
Moving to a subscription model for Java SE 8 – JAXenter
Commercial support program for Java SE 8 is moving to a subscription model. If that’s good news or bad, depends on how you see things!
Hibernate and Java Persistence API (JPA) Fundamentals
Get smarter about how you work with Java and databases in this thorough hands-on course.
Developing OpenJDK Mission Control – Marcus Hirt
– By Marcus The last blog (about Fetching and Building OpenJDK Mission Control ) earned me questions on how to get the source into….
10 Examples of Converting a List to Map in Java 8
Suppose you have a List of objects, List and you want to convert that to a Map , where a key is obtained from the object and value is the …
JavaFX Tip 30: ScrollPane with DropShadow
In one of my projects I recently noticed that it was hard for the user to see whether the content of…
Functional Programming Patterns With Java 8 – DZone Java
This tutorial will provide exercises from traditional, imperative-style code to functional-style code in Java 8, continuously aiming to create cleaner code.
Java Weekly, Issue 233 | Baeldung
Interesting Java 10 functionality as well as notes on what’s happening with Jakarta EE, plus Zuul 2 finally being open sourced. A good week all around.
Peeking Inside Java Streams With Stream.peek – DZone Java
This tutorial demonstrates how the Stream interface can be a useful took to help visualize how stream operations behave using the Stream.peek(Consumer).