Using Maven Failsafe With Spring Boot

Home » Blog » Software » Enterprise Software » Using Maven Failsafe With Spring Boot

Leider ist der Eintrag nur auf English verfügbar.

Maven Failsafe is a Maven plugin designed to be used in conjunction with the Maven Surefire Plugin. While the former plugin is intended for running integration tests the latter’s purpose is to run unit tests.

These plugins are tremendously useful for partitioning tests in Maven-based Java applications in order to make tests and builds run faster.

When recently using Maven Failsafe with a Spring Boot application, though, I encountered a somewhat gnarly problem. Running mvn verify caused this error for all of the application classes (controllers, models etc.) even though those should’ve been on the Java classpath:

Apparently, starting with version 2.19 Maven Failsafe doesn’t use target/classes as its classpath anymore but the generated JAR file (see Integration Tests With Spring Boot – ClassNotFoundException). When you think about it this does make sense because you want to test against the final build artefact rather than an intermediate directory on your local machine.

However, during the build process Spring Boot (or rather the Spring Boot Maven Plugin) repackages your application into a so-called fat JAR that contains all the dependencies required for running the application. This JAR has a specific internal directory structure with folders such as BOOT-INF that Maven Failsafe has no chance of figuring out automatically (or generically, considering that Maven Failsafe is intended to be used for Java applications in general, not just Spring Boot ones).

Hence, in order to allow Maven Failsafe to properly recognise our application classes we need to add our target/classes to its classpath again:

Once that is done Maven Failsafe will work again with your Spring Boot application builds and test runs.

About the author: Bjoern
Independent IT consultant, entrepreneur
4 Comments
  1. Pingback: Maven Failsafe が java.lang.NoClassDefFoundError で失敗する - JpStack

    Mentions

  • 💬 Revisiting Popular Posts: Spring Batch Resources & Maven Failsafe With Spring Boot | Björn Wilmsmann

Leave a Comment