Skip to content

Files

boot-api-archunit-sample

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 1, 2023
Aug 18, 2024
Feb 22, 2025
Mar 28, 2025
Nov 10, 2023
Nov 10, 2023
Jan 31, 2025
Nov 10, 2023
Jul 10, 2023
May 24, 2024
Nov 10, 2023
Apr 20, 2024
Jan 6, 2025
Apr 2, 2025
Jul 6, 2024

boot-api-archunit-sample

ArchUnit is a Java-based library that allows developers to create unit tests for the architecture of their code. It provides a set of rules and assertions that can be used to validate the architecture of the code, ensuring that it follows best practices and meets certain architectural requirements. This allows developers to catch potential issues early on in the development process and improve the overall quality and maintainability of the code.

ArchUnit Implementation in a Spring Boot Project, read more for understanding concept

Shamelessly copied from api-example-archunit

The idea behind this API is to show some of all possibles rules that you can validate in one particular project. For more information about this library and how you can use it check his page

Format code

$ ./mvnw spotless:apply

Run tests

$ ./mvnw clean verify

Run locally

$ docker-compose -f docker/docker-compose.yml up -d
$ ./mvnw spring-boot:run -Dspring-boot.run.profiles=local

Using Testcontainers at Development Time

You can run TestApplication.java from your IDE directly. You can also run the application using Maven as follows:

./mvnw spring-boot:test-run

Useful Links

Lessons

  • Migrated from flyway to liquibase bacause flyway is stopping upgrade to latest version of postgres

Here are some of technologies that I used to develop this example:

  • Spring Boot - 3.3.0
  • Archunit - 1.2.0
  • Junit5