Change Gson field naming strategy in Spring
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 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 In this article, We will learn how to develop Spring boot Rest Service with MongoDB. MongoDB is a popular NoSQL database and widely used database for newly started…
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 This article is about Spring MVC read HTTP Request header in Spring boot Rest Service or Spring MVC Controller. @RequestHeader is a annotation using that we can read individual healer or…
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 query IN clause example or Spring JPA IN or NOT IN query with an example. In SQL query, when we…