Eliminate Redundancies in RAML with Resource Types and Traits REST RAML 1. Overview In our RAML tutorial article, we introduced the RESTful API Modeling Language and created a simple API definition based on a single entity called Foo. Now imagine a real-world API in which you have several entity-type resources,… Continue Reading simple-raml-with-resource-types-and-traits

Spring Boot with Multiple SQL Import Files 1. Overview Spring Boot allows us to import sample data into our database – mainly to prepare data for integration tests. Out of the box, there are two possibilities. We can use import.sql (Hibernate support) or data.sql (Spring JDBC support) files to load… Continue Reading spring-boot-sql-import-files

IntelliJ Debugging Tricks 1. Overview In this tutorial, we’ll look into some advanced IntelliJ debugging facilities. It’s assumed that debugging basics are already known (how to start debugging, Step Into, Step Over actions etc). If not, please refer to this article for more details on that. 2. Smart Step Into There… Continue Reading intellij-debugging-tricks