razu
razu
When running application from docker image, synchronization progress bar do not work. I've tried to set it up in nginx configuration, but ended up returning custom header from /api/project/{projectId}/sse-sync endpoint.
I have simple 1:N relation ```java record Product(@Id String id, String name, Set parts, @Version Integer version) {} record Part(@Id Integer id, String name) {} interface ProductRepository extends CrudRepository {}...
Spring Modulith: 1.2.0-M2 After introducing indexes on ENVENT_PUBLICATION table (https://github.com/spring-projects/spring-modulith/issues/403) events with bigger payload are not working due to index size limit. ```sql INSERT INTO EVENT_PUBLICATION (ID, EVENT_TYPE, LISTENER_ID, PUBLICATION_DATE,...