Hi everyone in this post I just wanna share a simple sticky code in Spring MVC which used to mapping your @RequestMapping annotation to a properties file. It’s called Property Source, and it would be an advantage to make your URL Request Mapping more managable. Because you put your URL Request Mapping in a single […]
Spring MVC Hibernate with Java Config from scratch
Hi everyone, this is the 2nd sequel from my last posting. In the previous posting we have learned to build a Spring Web Application (less xml) from the scratch (adding project, library, and so on).In this posting I will tell you basic knowledge how to integrate your previous application with Hibernate and Postgresql. So in […]
Spring MVC Java Config from the scratch
It’s been months since my last posting , I realized that I am very busy to write something here. So to make this blog ‘still alive’ I want to tell you the basic knowledge about Spring MVC (again), how to build Spring MVC with Java Config (less xml) from the scratch, what I mean here […]
Simple CRUD Spring MVC and Thymeleaf
In the previous post, I showed you how to integrating Spring MVC and Thymeleaf. In this chapter I will show you step by step to create Simple CRUD using Spring MVC and Thymeleaf
Spring MVC and Thymeleaf Integration
Thymeleaf is an alternative as replacement of JSP, please visit http://www.thymeleaf.org/ for the further information about thymeleaf. Now I will show you how to integrate Spring MVC and Thymeleaf.