Java
-
Custom Field Name with @JsonProperty
1. Introduction Custom field name with @JsonProperty is very useful when mapping Java fields to JavaScript Object Notation (JSON) properties…
Read More » -
Custom Field Names with @SerializedName in Gson
Gson is a popular Java library for converting Java objects to their JSON representation and vice versa. One of the…
Read More » -
Java’s Performance and Efficiency with GraalVM
For decades, Java has reigned supreme in enterprise development, renowned for its robustness and rich ecosystem. However, traditional Java applications…
Read More » -
PostgreSQL – Indexes
Indexes in PostgreSQL are data structures used to improve the speed of data retrieval operations on database tables. They work…
Read More » -
PostgreSQL – Recursive CTEs
Common Table Expressions (CTEs) are a powerful feature in SQL that allows you to create temporary result sets that can…
Read More » -
Parse JSON using Moshi
Moshi is a modern JSON library for Android and Java by Square. It simplifies parsing and serializing JSON, supports annotations,…
Read More » -
Vigenère Cipher in Java
The Vigenère cipher is a classic method of encryption that utilizes a keyword to create a more complex substitution, making…
Read More » -
Ktor: Unleash the Power of Asynchronous Web Development in Java
Ktor isn’t your average Java web framework. It throws away the old, clunky ways and embraces a modern, asynchronous approach…
Read More » -
Jackson and Lombok Examples
1. Introduction Jackson is an open-source java library for processing JSONs. It deserializes a JSON string into a Plain Old…
Read More »