Hibernate Field Naming with Spring Boot 1. Introduction In this brief tutorial, we’ll see how to use the Hibernate naming strategies in a Spring Boot application. 2. Maven Dependencies If we begin with a Maven-based Spring Boot application, and we are happy to embrace Spring Data, then we just need… Continue Reading hibernate-field-naming-spring-boot

Displaying Dates in the Timezone of the User 1. Overview In this installment of the Reddit app case study, we’re going to be adding the be scheduling post’s according to the user’s timezone. Dealing with timezones is notoriously difficult and the technical options are wide open. Our first concern is… Continue Reading reddit-app-show-date-in-the-users-timezone

Multiple Entry Points in Spring Security 1. Overview In this quick tutorial, we’re going to take a look at how to define multiple entry points in a Spring Security application. This mainly entails defining multiple http blocks in an XML configuration file or multiple HttpSecurity instances by extending the WebSecurityConfigurerAdapter… Continue Reading spring-security-multiple-entry-points