Use Liquibase to Safely Evolve Your Database Schema 1. Overview In this quick tutorial, we’ll make use of Liquibase to evolve the database schema of a Java web application. We’re going to focus on a general Java app first, and we’re also going to take a focused look at some… Continue Reading liquibase-refactor-schema-of-java-app

Netflix Archaius with Various Database Configurations Cloud Persistence Spring  1. Overview The Netflix Archaius offers libraries and functionality for connecting to many data sources. In this tutorial, we’ll learn how to get configurations: Using the JDBC API to connect to a database From configurations stored in a DynamoDB instance By… Continue Reading netflix-archaius-database-configurations

Custom Types in Hibernate and the @Type Annotation Persistence Hibernate   1. Overview Hibernate simplifies data handling between SQL and JDBC by mapping the Object Oriented model in Java with the Relational model in Databases. Although mapping of basic Java classes is in-built in Hibernate, mapping of custom types is often complex.… Continue Reading hibernate-custom-types