Spring MVC application architecture

Relatively short article explaining fairly complex idea of spring app architecture was published on codebeach: http://www.codebeach.com/2008/06/spring-mvc-application-architecture.html View, Controller, Service and Model layer explained in few sentences each. That helped me a lot when beginning Spring development

Spring website layouts SSI with thymeleaf templates

Based on application from this post, I will show how to make the MVC app containing two pages, both with the same header and footer, but different contents. I will reuse the header and footer HTML code, to avoid code duplication and follow DRY principle. What I am going to build The goal is to have two … Continue reading Spring website layouts SSI with thymeleaf templates

Spring boot MVC application tutorial

I will tutor you to create simple Spring MVC application based on Spring boot. App will have two linked web pages with thymeleaf. The project itself will be made in Eclipse as an Gradle project. Let's start! Download Source Code Source for this tutorial is available here, on GitHub Create project with Gradle build file … Continue reading Spring boot MVC application tutorial