There are many programming languages out there, but Java beats them all in terms of popularity. There definitely must be a reason why. Let’s take a look.
Automatic versioning of Java applications using Git-Version Plugin
Version management is an important part of every software project, yet it’s often overlooked. Even more often, it can be significantly improved.
GraalVM 19.3 Brings JDK 11 Support
GraalVM, a polyglot virtual machine that provides a shared runtime to execute applications written in multiple languages like Java, C, Python, and JavaScript, has released version 19.3 with support for JDK 11. Previous versions of GraalVM were based on JDK 8.
Gradual Migration from Java EE to MicroProfile
This session shows you an overview of what MicroProfile is and how it relates to Java EE.
+0 and -0 for float and int in Java 8 shows different behavior
I have gone through this post negative and positive zero.To my understanding following code should produce true and true as a output .However, It is giving false and true as a output.I’m
Java Cryptography
The Java Cryptography API enables you to encrypt and decrypt data in Java using industry standard algorithm, as well as manage keys, authenticate messages etc.
Weekly Review: Java 14 enters Rampdown Phase One, 2020 development trends & more – JAXenter
Last week JDK 14 entered Rampdown Phase One – the next milestone on the road to Java 14, we saw upcoming software development trends in 2020 & more.
Hidden Treasures of Eclipse collections – 2019 edition – JVM Advent
Checkout hidden treasures of Eclipse Collections – 2019 edition. APIs explained are countBy(), reject(), makeString(), zip(), corresponds().
2019.4 | Gradle Enterprise
Analyze test failure and performance over many builds This release of Gradle Enterprise includes tools for analyzing test failures….
Java Advent Calendar: Take Control of Your Slow Producers – DZone Java
In this tutorial, learn how to take control of slow producers in your Spring Boot application using the READ-BEHIND cache.
Tutorial: How to send emails from your Java app via SMTP servers
Did you know Java apps can be integrated with any available SMTP server to send emails? This tutorial goes over how to send emails via your Java app.
How to create a blocking background loader in Java 8?
QuestionHow do you create a proper background loader in Java 8? The conditions:data should be loaded in backgroundafter the loading the data should be displayedwhile data are loaded no further