Skip to content

java

19 articles tagged “java”

Integrating Snowflake with Java: JDBC and Async JDBC Execution

Blog

July 17, 2025

Integrating Snowflake with Java: JDBC and Async JDBC Execution

Introduction Snowflake is a cloud-based data platform that enables simple, fast, and scalable data storage, processing, and analysis. Unlike traditional solutions, Snowflake is not built…

Leveraging WordPress Custom Post Types

Blog

October 4, 2023

Leveraging WordPress Custom Post Types

In the vibrant world of web development, WordPress stands tall as a dependable platform favored by both seasoned professionals and newcomers alike. It offers many…

Challenges With Auditing Changes in Java objects

Blog

October 4, 2023

Challenges With Auditing Changes in Java objects

The challenge of auditing changes or finding differences between Java objects is often encountered in complex Java applications. As projects evolve and grow in complexity,…

Converting logical expressions into ElasticSearch’s Java API using QueryBuilders class

Blog

October 21, 2022

Converting logical expressions into ElasticSearch’s Java API using QueryBuilders class

In this Tech Bite, we will see how to use ElasticSearch's Java API to perform some of the common Elasticsearch queries. Elasticsearch query types The…

Pattern Matching for instanceof and Switch in Java

Blog

July 22, 2022

Pattern Matching for instanceof and Switch in Java

Since Java 10, there has been a release cycle with two new releases each year, one in March and another in September. Each new release…

Java-based Migrations

Blog

July 19, 2022

Java-based Migrations

It is important to develop a well-designed schema at the beginning of the project, but with the new requirements, changing your initial schema is hard…

Selenium 4 Relative Locators

Blog

June 22, 2022

Selenium 4 Relative Locators

Selenium 4 is out with a lot of cool and interesting things. The motivation behind this new makeover of features and functionalities was to upgrade…

Bridge pattern in Java

Blog

June 21, 2022

Bridge pattern in Java

Design patterns are proven solutions for common problems that occur during software design. They provide a description or a template for how to solve such…

Sealed Classes and Interfaces in Java

Blog

June 15, 2022

Sealed Classes and Interfaces in Java

What are they? Sealed classes and interfaces[1] solve a unique problem that developers have been facing while trying to model real-world data using class hierarchies.…

Java Concurrent package overview

Blog

June 14, 2022

Java Concurrent package overview

Introduction Concurrency happens in a program when more than one process appears to be running at the same time. It enables a program to achieve…