Logback – Set log file name programmatically
In Logback, it is easy to set a log file name programmatically : 1 - In logback.xml, declares a variable like ${log.name}, 2 - In Java, set the variable via…
Favourite tutorials for developers
In Logback, it is easy to set a log file name programmatically : 1 - In logback.xml, declares a variable like ${log.name}, 2 - In Java, set the variable via…
In this tutorial, we will show you how to use Logback Mapped Diagnostic Context (MDC) and SiftingAppender to create a separate log file for each thread.
Here are a few logback.xml examples that are used in my projects, just for sharing. All logging will be redirected to console. All logging will be redirected to a file…
A simple SLF4J with Logback example. Tested with: SLF4J API 1.7.25, Logback 1.2.3, Maven 3, Java 8. Note: Logback natively implements the SLF4J API.
In this article, we will show you how to develop a Spring Boot REST-style web application. Technologies used: Spring Boot 2.5.5, Maven 3.x, Java 8 or later. Note: Spring Boot…
The Spring Boot tests @SpringBootTest or @DataJpaTest need to find the @SpringBootConfiguration application class to launch the entire application and do the tests. And if Spring Boot can’t find the…
In this article, we will show you how to do Spring Boot 2 integration test with JUnit 5, and also Mockito (Stack: Spring Boot 2.1.2.RELEASE, JUnit 5, Mockito 2, Maven…
This article shows you how to use cURL command to POST JSON data to a Spring REST API.