Spring Jackson property naming strategy

Spring Jackson property naming strategy

Table of Contents1. OverviewEmployeeController.javaEmployee.java2. Spring Jackson property naming strategy1. LowerCamelCase2. LowerCaseStrategy2. SnakeCaseStrategy3. UpperCamelCaseStrategy4. KebabCaseStrategy3. Conclusion4. References 1. Overview Jackson is a very popular library to convert Java object to JSON. while converting POJO to JSON,…

Spring JPA Projection example

Spring JPA Projection example

Table of Contents1. Overview2. Spring JPA Projection using Interface1. Close ProjectionEmployeeBasicDetails.javaProjection in the @Query annotation and method query2. Open Projection3. Runtime projectionEmployeeBasicDetails.javaEmployeeNamesDetails.javaEmployeeDAO.java2. Spring JPA Projection using Class3. Conclusion4. References 1….

Spring Boot Liquibase Example

Spring Boot Liquibase Example

Table of Contents1. Overview2. Example 2.1 Project Structure2.2 POM file configuration2.3 application.properties 2.4 Change Log Files 2.4.1 changelog-master.xml 2.4.2 create-person-table-changelog-1.xml 2.4.3 insert-person-table-changelog-2.xml 2.4.4 update-person-table-precondition-3.xml 2.5 Output 3. Conclusion Important properties…

Spark Joins

Spark Joins

Table of Contents1. Overview2. Development environment3. Input Files3.1 User details sample input file for Spark Joins:3.2 Address details sample input file for Spark Joins:4 Project Structure5. Solution5.1 Build File :…