An in-memory database may be sufficient during the early phase of project development. However, sooner or later you will need…
Each API requires comprehensive documentaiton. You can generate it using Swagger for a REST API. Its clients will get standardized…
This post covers issues that may occur when you map entities with ManyToOne bidirectional association. Read about mapping this relation while avoiding LazyInitializatinException,…
In this article you can read about applying Spring Security to the backend module of a Spring Boot and Angular…
You can use the JSON Web Token standard as a part of your authentication and authorisation solution in a project built with…
When debugging a hibernate related issue, it is useful to examine queries in the console. Check out how to print…
When an API is asked for a resource that can't be found, it is expected to return the HTTP 404…
Providing pagination for displaying large set of data will improve user experience and reduce the response time. Spring Boot comes…
Fetching entities with complex relationships can consume a lot of resources during calls to your API. To minimize the size of…
An Angular app is served by a different host than a Spring Boot API, so reaching for data via REST…