Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
194 views

I am using Spring Modulith 2.0.0-M3 with Spring Boot 4.0.0-RC1. I have enabled zipkin tracing export and I can see that Spring Modulith adds a module.key and module.method tags to the trace. I would ...
alturkovic's user avatar
  • 1,129
0 votes
1 answer
255 views

I am trying to combine spring modulith (1.3.4) and clean architecture to verify the proper dependencies between gradle modules. The project setup is defined by the following structure: Domain Logical ...
Jonathan's user avatar
  • 297
0 votes
1 answer
235 views

I'm trying to setup a new project for two different applications that will share some common functionality: Gradle project | \_ Application A (package com.a) | \_ Application B (package com.b) | \_ ...
Rolan's user avatar
  • 189
4 votes
1 answer
981 views

When using Spring Modulith with events, is it better practice placing the events of each module within each module? - com.example |- product |- application |- domain |- events ...
zeugor's user avatar
  • 956
0 votes
0 answers
200 views

Is there a way to set up multiple datasources (all mysql) in a Spring Boot application using Spring Modulith, where each module has a different database and schema, without manually defining beans ...
Lucas Ângelo O. M. Rocha's user avatar
4 votes
1 answer
2k views

I'm trying to build a dummy POC, but I am missing something, that I can't figure out. The issue is that the method annotated with @ApplicationModuleListener is not triggered. Here is my code: package ...
JPG's user avatar
  • 1,138
3 votes
3 answers
1k views

I am thinking of building a modular monolith, using Spring Modulith, and also apply Domain Driven Design (DDD). I have a question regarding fetching data from multiple modules and what is the ...
K. Siva Prasad Reddy's user avatar
3 votes
2 answers
1k views

I am investigating how the Event Publication Repository in Spring Modulith works. I have it working so that when a listener fails, the event is stored in the registry as incomplete. According to the ...
Wim Deblauwe's user avatar
  • 27.2k
0 votes
1 answer
247 views

Most of the examples of using Spring Modulith use DDD in some capacity and organizing things by bounded contexts. My use case is an application which offers a REST API which interacts several backends ...
Conner's user avatar
  • 675
3 votes
0 answers
904 views

I am publishing an Event in a method that is annotated with the annotation @Transactional. The Listener is a annotated with @TransactionalEventListener. The above setup results in sync(We can use @...
Pratik's user avatar
  • 31
1 vote
2 answers
2k views

While working with Spring Modulith I am trying to test the ApplicationModuleTest in a multi module application. I am running into problems when spring is trying to create JpaRepositories ...
DanieldeJong93's user avatar