Spring Boot REST Service Exception Handling

Handling exceptions in a REST service is crucial to ensure that the service returns meaningful error messages to the client in case of errors. Spring Boot provides several ways to…

How to create executable jar file in Spring Boot

Spring boot allows to create executable jar files using maven by configuring in the pom.xml file. The maven package command builds the spring boot application and creates executable and non-executable…