Spring Boot

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

Getting Started with Spring Data Specifications

If you are looking for a better way to manage your queries or want to generate dynamic and typesafe queries then you might find your solution in Spring Data JPA Specifications.

Read more

12 Factor Apps with Spring Boot

The Twelve-Factor App is a set of guidelines for building cloud-native applications. By cloud-native, we will mean an application that is portable across environments, easy to update, and scalable enough to take advantage of the elastic capabilities of the cloud.

Read more

Full-Text Search with Hibernate Search and Spring Boot

If you want to integrate extensive full-text search features in your Spring Boot application without having to make major changes, Hibernate Search may be a way to go.

Read more