Spring Boot

Getting Started with AWS S3 and Spring Boot

In this article, we are going to explore AWS' Simple Storage Service (S3) together with Spring Boot to build a custom file-sharing application (just like in the good old days before Google Drive, Dropbox & co).

Read more

Handling Cookies with Spring Boot and the Servlet API

This article is about cookies and different ways we can implement them in Spring Boot. We are going to have a short overview of what cookies are, how they work, and how we can handle them using the Servlet API and Spring Boot.

Read more

Getting Started with GraphQL

GraphQL was developed by Facebook in 2012 for their mobile apps. It was open-sourced in 2015 and is now used by many development teams, including some prominent ones like GitHub, Twitter, and Airbnb.

Read more

Complete Guide to Exception Handling in Spring Boot

Handling exceptions is an important part of building a robust application. Spring Boot offers more than one way of doing it.

Read more

Using Elasticsearch with Spring Boot

Elasticsearch is built on top of Apache Lucene and was first released by Elasticsearch N.V. (now Elastic) in 2010. According to the website of Elastic, it is a distributed open-source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.

Read more

Building Reusable Mock Modules with Spring Boot

Wouldn’t it be nice to have a codebase that is cut into loosely coupled modules, with each module having a dedicated set of responsibilities?

Read more