Spring Boot – Create a Deployable War File

In general Spring Boot applications are deployed as jar files but Spring Boot applications can also deployed as war files. In this blog post I will explain step by step process to convert Spring Boot application which is packaged as jar file to deployable war file. Spring Boot application when packaged as jar files they…

Spring Boot Integration Testing with Testcontainers and DB2

In this blog post I show how to do Spring Boot integration testing with Testcontainers using DB2 database. I have already written a detailed blog post about database integration testing with Spring Boot and Testcontainers in following article In above blog post, I have used PostgresSQL database. In this blog post , I will only…