Using Netflix Eureka with Spring Cloud
In the world of microservices it becomes more and more important to easily find / locate services. They can run anywhere in the cloud, even and often multiple times (multiple instances per service). Fortunately Netflix did open source some of…
Spring Data Rest + HATEOAS
Spring makes it quite easy to create a rest interface. Just include the corresponding boot dependency in your project with standard spring data repositories. That’s it! Maven Dependencies All my poms derive from the spring-boot-parent. This takes care off most…
Spring Data MongoDB
This post is all about the setup of spring data mongodb for the Mos Erp application. I wanted to create a backend application with a clear REST interface. Spring provides a very sophisticated framework stack to implement it (and I…