Learn how to configure SLF4J to process java.util.logging (JUL) loggers, allowing both to use the same SLF4J output format.
Also find me here:
Baeldung Author
Chong Yang
Chong Yang is a seasoned Java developer and Architect with over 9 years of experience in software engineering and architectural design. Currently based in Xi'an, China. I specialize in Java development, microservices, and CRM solutions. A true Vim enthusiast, I enjoy turning every keystroke into magic.
Here's what I've written (so far):
Baeldung on Java
- All
- Persistence (2)
- Logging (2)
- Java Numbers (1)
- JSON (1)
- Algorithms (1)
Insert JSON Object into PostgreSQL using Java preparedStatement
Filed under JSON, Persistence
Learn how to insert JSON objects into a PostgreSQL database using Java’s PreparedStatement.
Logging SQL Queries to the Console in Mybatis
Filed under Logging, Persistence
We can configure Mybatis to log queries and results. In this article, we look at how this works and how to fine-tune the logging.
How to Check Number Perfection
Filed under Algorithms, Java Numbers
This article explores perfect numbers and three methods to identify them: brute force, stream-based, and Euclid-Euler theorem.