Spring Boot integration testing with Testcontainers starter project
This blog post demonstrates springboot integration testing with Testcontainers library using starter project
This blog post demonstrates springboot integration testing with Testcontainers library using starter project
Springboot provides excellent support for unit testing and integration testing. I have covered how to do unit testing for Springboot controllers in various ways in one of my previous articles. While doing unit testing we try to test a single method while mocking all the dependencies. While doing integration testing we see that interaction between…
If you have set up a website for a business, a company website or a blog, making sure that it is always running and up all the time is very important. If the website is down for any reason (except scheduled maintenance) you want to get notified about the situation so that you can take…
The purpose of logging is to provide information about what is happening in the system, which requires including information about the objects being manipulated. In this blog post I will show you how can we achieve lazy logging with log4j 2.x framework. In Log4j 1.x this could be accomplished by doing The Problem with the…