Java

Add a PostgreSQL database to your Spring Boot project

An in-memory database may be sufficient during the early phase of project development. However, sooner or later you will need…

5 years ago

Spring Boot API documentation with Swagger

Each API requires comprehensive documentaiton. You can generate it using Swagger for a REST API. Its clients will get standardized…

6 years ago

ManyToOne bidirectional association in Hibernate — common issues solved

This post covers issues that may occur when you map entities with ManyToOne bidirectional association. Read about mapping this relation while avoiding LazyInitializatinException,…

6 years ago

Securing your Spring Boot and Angular app with JWT #2 – Backend

In this article you can read about applying Spring Security to the backend module of a Spring Boot and Angular…

6 years ago

Securing your Spring Boot and Angular app with JWT #1 – Introduction

You can use the JSON Web Token standard as a part of your authentication and authorisation solution in a project built with…

6 years ago

Show Hibernate SQL queries with values in Spring Boot

When debugging a hibernate related issue, it is useful to examine queries in the console. Check out how to print…

6 years ago

Handle requests for a non-existent resource using Java Optional in a REST controller

When an API is asked for a resource that can't be found, it is expected to return the HTTP 404…

6 years ago

How to add pagination to a Spring Boot app

Providing pagination for displaying large set of data will improve user experience and reduce the response time. Spring Boot comes…

6 years ago

How to get json response only with an id of the related entity

Fetching entities with complex relationships can consume a lot of resources during calls to your API. To minimize the size of…

6 years ago

Fix CORS issues between Spring Boot and Angular on localhost

An Angular app is served by a different host than a Spring Boot API, so reaching for data via REST…

7 years ago