Every Monday we take a step back and look at all the cool stuff that went down during the previous week: JavaFX 11, Angular v7 beta.6, Kotlin 1.3 & more.
Category: Articles
Java 11 is here! – JAXenter
Java SE 11 (JDK 11) is here but that’s definitely not the only reason to celebrate: This is also the first LTS release in Oracle’s new six-month cycle.
10 Useful Tools and Libraries for Programmer and IT Professionals
Every trade has their tools and software development is no different. A good programmer knows his tools better than others and also have…
Omitting an instance field at run time in Java
Java’s assert mechanism allows disabling putting in assertions which have essentially no run time cost (aside from a bigger class file) if assertions are disabled. But this may cover all situation…
Oracle Releases JDK 11 — ADTmag
This release comes with several developer productivity enhancements, along with new support for modern cryptographic and Internet standards, including TLS 1.3 and HTTP/2.
Java 11 HttpClient, Gson, Gradle, and Modularization
This post describes a simple system that uses the new HttpClient class that comes with Java 11 to access a RESTful web service. After demonstrating basic functionality, changes are made to parse th…
How to merge two ArrayLists in Java – HowToDoInJava
Learn how to merge two arraylists into a combined single arraylist in Java. Also learn to join arraylists without duplicates in the combined list.
How it works: Java Message Service (JMS) – Deliver Enterprise Java Today
Learn the architecture of the Java Message Service (JMS) in this guest post by Abdalla Mahmoud, the author of Developing…
Java Lambda Expressions: Functions as First-Class Citizens – eProgrammerz
A functional interface is an interface with a single abstract method. The concept was introduced in JDK 8, but there were interfaces prior to JDK 8 that complied with that definition.
Top 3 reasons to use JRebel, QRebel, and XRebel |
Here are three development challenges that I run into the most – and the solutions we’ve offered up to real customers to help them do better.
Chronicle support for Java 11, Lightweight Queues, ARM, C++
Recently we have broadened our support for Queue for: Java 11. Lightweight queues for lower latencies.
Java 11 String API Updates
It turns out that the new upcoming LTS JDK 11 release is bringing a few interesting String API updates to the table. Let’s have a look…
How to serialize and deserialize ArrayList in Java – HowToDoInJava
Java ArrayList is serializable by default. It means that we do not need to implement Serializable interface to serialize ArrayList or deserialize ArrayList .
How to empty or clear ArrayList in Java – HowToDoInJava
Learn to clear arraylist or empty an arraylist in Java. Clearing a list means to remove all elements from the list. Difference between clear and removeAll.