Here’s a brief post. I’m not sure how to start it. It’s one of those “why didn’t I think of tha…
Search for time interval in logs
IntroThis post is indirectly related to my mini-series about log analysis. It would be great to re…
Manual on Java 11: Cleverest hacks to simplify your Java 11 navigation – JAXenter
Manual on Java 11: We invited 8 Java experts to share their best & worst experiences with Java 11, the hacks they discovered so far and their tips & tricks.
Java Spring Boot Tutorial – Live Hello-World Web Application Example with Detailed Steps • Crunchify
Why Spring Boot? What Spring Boot is used for? Spring Boot idea is very simple. It provides pre-configured set of functionality and framework with you
Remote debugging for Java applications – JAXenter
Remote testing is often necessary to fix problems in production. Ram Lakshmanan explains how to debug Java servers without much trouble at all.
Javalin 2.4 hits the spot for Kotlin and Java developers – JAXenter
We take a look at what’s up with Javalin: new classes, improved Java support, and WebSocket improvements. That hits the spot!
Value of static variable not changed even after initializing the child class in Java
When I invoke the static variable y by using Checks.y (Checks being a subclass), the static block is not executed and the value of y doesn’t get updated.class Par { static int y = 4;}class
Why is Stream.sorted not type-safe in Java 8?
3 This is from the Stream interface from Oracle’s implementation of JDK 8: public interface Stream
How writing tests can make you a faster and more productive developer
Most of us have heard of “writer’s block”, but have you heard of “developer’s block”? Just like a writer, a software developer can sit…
Format All Your Java Projects With One Rule – DZone Java
In this post, we look at how to format all your Java projects with one simple rule: pick an opinionated formatter for your code to make life a lot easier.
Discovering SaaS, Big Data, and NoSQL Metadata With JDBC – DZone Big Data
A big data expert explores how one product and its development team are working to help make metadata discovery within big data sets easier for data scientists
Serverless cold start is not a problem – and here is why (for most applications)
When you start with serverless you will very soon learn/hear about functions cold start (I believe s…
Payara Platform Migration Guide
Download the Migration Guide to see what you will need to consider in a migration project for your apps & how Payara Server’s features can make your life easier.
In Java8 How to Shuffle, Reverse, Copy, Rotate and Swap List using Collection APIs? • Crunchify
Java collection framework is pretty amazing. Collection class consists exclusively of static methods that operate on or return collections. Those
Java boolean keyword – boolean datatype in Java – HowToDoInJava
Java boolean keyword is used to declare a variable as a boolean type which represents only one of two possible values i.e. either true or false.