Java
-
Arrays.hashCode(Object[]) versus Objects.hash(Object…)
Since JDK 1.5, the Arrays class has offered overloaded static methods with the name “hashCode“. Most of the overloaded methods…
Read More » -
Query Databases Using Java Streams
In this article, you will learn how you can write pure Java applications, that are able to work with data…
Read More » -
JEP 342: The JVM and Spectre
JEP 342 (“Limit Speculative Execution”) has transitioned from “Draft” state to “Candidate” state, but it has not yet been targeted…
Read More » -
JDK 12 Switch Expression Encountering Unanticipated Enum Value
As I wrote about in my post “Playing with JDK 12’s Switch Expressions“, the JDK 12 Early Access Builds have…
Read More » -
JDK 12: Switch Statements/Expressions in Action
My last post “Playing with JDK 12’s Switch Expressions” talked about use of the JDK 12 Early Access Builds to…
Read More » -
Ajax File Upload with Servlet and Bootstrap
Introduction In this tutorial, we will check how Ajax file upload works with Servlets. Also we will decorate our form…
Read More » -
Fluent Design Style Text Field And Password Field For Java, JavaFX
I’ve just released version 4.5 of Java, JavaFX theme JMetro. This version adds new styles for the Text Field and…
Read More » -
Containerising a Spring Data Cassandra application
I’m continuing my journey of learning Docker. I am still keeping it simple at this point. This time around, I…
Read More » -
Java: Mocking a ResultSet using Mockito
This post shows how you can mock a java.sql.ResultSet using Mockito. It can be used to help unit test code…
Read More »