Spring Gson serialize null fields
1. Overview While working with Gson to serialize fields at that time by default Gson will ignore null fields or we can say if null fields available in Java object…
1. Overview While working with Gson to serialize fields at that time by default Gson will ignore null fields or we can say if null fields available in Java object…
1. Overview Google’s Gson is very popular library for converting Java Object to Json and in this article we will learn different strategy for converting java field name to upper…
1. Overview In this article, We will learn how to configure Gson in spring boot application or we can say it is a way to configure Gson instead of Jackson….
1. Overview This article is about Spring Jackson exclude null fields or we can say Spring Jackson ignore the null value at the time of serialization. While using RestController in Spring…
1. Overview In this article, We will learn Spring JPA Multi Tenancy example or Spring JPA database routing Example. While developing SAAS (Software As A Service) based application we require to change…
1. Overview Jackson is a very popular library to convert Java object to JSON. while converting POJO to JSON, It will consider property name will as key. But sometimes we require…
1. Overview In this article, We will learn Spring JPA Projection example using interface and class. Projection means select only specific column instead of fetching all the columns from the…
1. Overview Database schema migration is performed on a database whenever it is necessary to update/revert changes in the database or need to migrate the database from one version to…
1. Overview In this article, We will learn Spring JPA Like Query Example, While working with contains criteria like the query are used, for example when we want to search…
1. Overview HATEOAS(Hypermedia as the Engine of Application State) is an important component of the REST application architecture. Here, Hypermedia represents Hyperlinks and we can say APIs driven based on…