How to stop logback status INFO at the start of every log?
The logback will output its own status (INFO or WARN) at the start of the program, it’s really annoying! To fix it, add a NopStatusListener in logback.xml
Logback – Disable logging in Unit Test
While the unit test is running in the IDE, the Logback is showing a lot of configuration or status like this. It is really annoying, especially for the failed test,…
log4j.xml Examples
Here’s an XML version of log4j properties file, just for sharing. Redirect the logging to console. Redirect the logging to a file. Full example to output the logging to both…
log4j.properties examples
I can’t find many log4j.properties examples, here are a few log4j.properties examples that are used in my project, just for sharing. All logging will be redirected to your console. All…
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…
Logback – different log file for each thread
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.
logback.xml Examples
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…
SLF4J Logback Tutorial
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.
Spring Boot Hello World example
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…
Spring Boot – Unable to find a @SpringBootConfiguration
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…