spring-modulith icon indicating copy to clipboard operation
spring-modulith copied to clipboard

Modular applications with Spring Boot

Results 109 spring-modulith issues
Sort by recently updated
recently updated
newest added
trafficstars

https://github.com/spring-projects/spring-modulith/blob/c5f73e675d74c7a40d68957ca56be35d4d2c8ea3/spring-modulith-events/spring-modulith-events-core/src/main/java/org/springframework/modulith/events/core/DefaultEventPublicationRegistry.java#L104-L105 The markCompleted method of DefaultEventPublicationRegistry is invoked in a MethodInterceptor defined in CompletionRegisteringAdvisor, which intercepts the event handler method, invokes it, then calls the EventPublicationRegistry's markCompleted method to mark...

meta: waiting for feedback

When saving an Event in PostgreSQL I get the following error: Caused by: org.hibernate.exception.DataException: could not execute statement [ERROR: value too long for type character varying(255)] [insert into event_publication (completion_date,event_type,listener_id,publication_date,serialized_event,id)...

in: event publication registry
meta: waiting for feedback

### Discussed in https://github.com/spring-projects/spring-modulith/discussions/413 Originally posted by **marinusgeuze** December 11, 2023 Hi, In our project, we have organized our tests into different root packages based on their types, such as...

in: test support
type: enhancement

SQL_STATEMENT_DELETE_UNCOMPLETED is actually deleting the completed events, and SQL_STATEMENT_DELETE_UNCOMPLETED_BEFORE is actually deleting the completed events before some instant. The code works fine as-is but the naming is misleading.

Fixes [374](https://github.com/spring-projects/spring-modulith/issues/374) and parts of [311](https://github.com/spring-projects/spring-modulith/issues/311)

Add `Integration Test Scenarios of Event-Driven Modules` section to the docs to describe how to write tests when modules don't directly depend on other modules (that is not via Spring...

Hi, I try to use your modular monolithic approach for some month now, and I have an application in which I don't use ```@SpringBootApllication``` annotation (or ```@Modulith```, I am using...

Hello, Reading the documentation it states: ``` an application module’s base package is considered the API package and thus is the only package to allow incoming dependencies from other modules....

in: core
meta: waiting for feedback

Hi, I have tried to work with TransactionalEventListener but always received the SQLException `Incorrect string value: '\xA7IL\x9D\xC2\x88...' for column 'id' at row 1` whenever the handler received an event. I...

Hi there, I investigated Spring Modulith, because it exactly fits my organisation's approach to organically growing a microservice architecture. Thank you very much for your work on Spring Modulith! My...