Spring Boot Tutorial

Spring Boot Web MVC Using Embedded H2 Database Example

In this example, we will show you how to develop a spring boot web application using spring web MVC, spring data JPA, spring thymeleaf template engine, and h2 embedded database library jars. This web application provides two functions, one function can add employees and the other function can list added employees. Please see the function …

Spring Boot Web MVC Using Embedded H2 Database Example Read More »

How To Disable Or Customize Spring Boot Whitelabel Error Page

In the previous article, we have learned how to make your spring boot application files structure correct to avoid the Whitelabel error page ( Spring Boot Resolve Whitelabel Error Page Example ). But when your spring boot application has errors in source code, it still shows the Whitelabel error page, and you can not see …

How To Disable Or Customize Spring Boot Whitelabel Error Page Read More »

How To Install Spring Boot CLI On Mac, Linux And Windows

Spring boot CLI is a spring command-line tool that can help you develop spring applications quickly and easily. It utilizes spring’s start dependence and automation configuration features, then developers can focus on the business logic code, does not need to care about the project jars dependency and configuration. This article will tell you how to …

How To Install Spring Boot CLI On Mac, Linux And Windows Read More »

Spring Boot Hello World Example In STS

Spring boot is used to help developers develop spring applications quickly and easily. It can help you in the following aspects. Create spring project file structure and related source files with a wizard. Get and add correct dependencies jars into your spring project automatically from the spring repository. You do not need to care about …

Spring Boot Hello World Example In STS Read More »

Spring Boot Integrates slf4j and logback

The difference between slf4j and logback. Slf4j (Simple Logging Facade for Java) is a log facade of Java that implements some common apis for the logging framework. Logback is the specific logging framework. It has the same author as log4j, the new logging framework developed to address the problems of log4j. Slf4j and logback can …

Spring Boot Integrates slf4j and logback Read More »