Java: Secrets of Building and Managing Java and Java Spring Projects. Learn to use the Java Build Tool – Apache Maven.
Category: Articles
Speed Up Services With Reactive API in Java EE 8
Services can often be optimized with asynchronous processing even without changing their behavior to…
3 Programming Languages Java Devs Can Learn in 2018
If you are a Java programmer and are thinking of learning some more programming languages to expand your knowledge and skill, but you are…
FREE! – LIMITED TIME! Docker and Containers: The Essentials
Get up to speed with all of the essentials of containers and Docker. Course is alpha release chapters 5-8 coming soon. – Free Course
Docker for Java Developers | Udemy
Learn how you can use Docker to supercharge your enterprise Java Development!
Java 8 – Stream.collect() Example
Blog about Programming, Design, Java, Tutorial, Examples, Interview Questions, Java 5, 6, 7, 8, 9 features, multithreading, Linux, UNIX and tips.
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.
A beginner’s guide to Non-Repeatable Read anomaly – Vlad Mihalcea
Non-Repeatable Read is a data integrity anomaly that can occur when one transaction observes two successive versions of the same database record.
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!
Java 9 HttpClient exception when using certain characters in URL query parameters
Here is my sample code. The query is encoded to UTF-8:HttpRequest request = HttpRequest.newBuilder() .header(“content-type”, “application/json;charset=UTF-8”) .uri(URI.create(“http://loca…
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…