Category: Home
Java Magazine New Edition: Java Present and Future
This blog is the source for news about major Java announcements and the Java community.
Avoid boilerplate code with this typable Spring beans tutorial
When you leave a matrix of possibilities in your application, you exponentially increase the number of classes you need. This typable Spring beans tutorial demonstrates a simple and extensible way to minimize the multiplicity.
Java Eclipse Code Refactoring Shortcuts and Tips – DZone Java
Time to get more productive when writing Java code using Eclipse! We take a look at some handy refactoring shortcuts that will make your life easier.
Bootiful GCP: Spring Cloud Stream with Google Cloud Pub/Sub
I’ve recently read Josh Long‘s Bootiful GCP series on Sprint Central’s engineering blog and especia…
Java 11: New HTTP Client API
In Java 11, the incubated HTTP Client API first introduced in Java 9, has been standardised. It make…
Automating Docker Deployments Using Jib and Payara Micro
If you are like me, you spend most of your day developing applications. During that time, it is difficult to carve out the time to manage c…
Java: Aggregate Data Off-Heap
Explore how to create off-heap aggregations with a minimum of garbage collect impact and maximum …
Generic Search in MongoDB With Java – DZone Java
In this post, we will learn how to create a generic method to search data in the MongoDB database via the MongoDB driver API.
Installing OpenJDK 11 on Ubuntu 18.04 for real
OpenJDK 11 was released on the 25th of September, 1018. As this is the first LTS release after versi…
Who’s Been Naughty, Who’s Been Nice? Santa Gives You Java 11 Advice!
Ever wondered how Santa can deliver holiday gifts to all kids around the world? There are 2 billion…
A guide to accessing databases in Java
Developers can use this guide to discover, understand, and select the right Java library to access their database, like MySQL, Postgres, Oracle and all others.
Java convert byte[] to int[] by concatenate every two bytes
I have a byte[ ] array. How can i concatenate every 2 byte ( get 16 bit short sized value for everyone ) and convert to int?I am converting by using a for loop, but my byte array is long, so for …
Java Abstract Factory Design Pattern Example
1. IntroductionIn this article, we will depict Java Abstract Factory Design Pattern in detail. …