summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Kai Moritz [Sun, 16 May 2021 13:37:41 +0000 (15:37 +0200)]
Released the component for part 2 of the blog series
Kai Moritz [Sun, 1 Nov 2020 12:25:27 +0000 (13:25 +0100)]
Integrated outbox-postage instead of the copy+pasted implementation
* Removed copied source-code and integrated library instead
* Upgraded the used version of Java from 1.8 to 11
* Added a fully qualified name for the docker-image
* Unifined naming of profiles
Kai Moritz [Sun, 7 Feb 2021 14:13:35 +0000 (15:13 +0100)]
Removed Setup for Docker Compose and README.*
Kai Moritz [Sun, 16 May 2021 13:35:36 +0000 (15:35 +0200)]
Preparing for the next version polling-outbox-2
Kai Moritz [Sun, 16 May 2021 13:26:39 +0000 (15:26 +0200)]
Released the component for part 1 of the blog series
* Introduced the fixed version polling-outbox-1 for this version of the
implementation.
* Added a README for GitHub.
* Shortend the execution-time of the demonstration-script.
Kai Moritz [Sun, 25 Oct 2020 15:45:39 +0000 (16:45 +0100)]
Published events are transactionally captured in an outbox-table
* The outbox-implementation it kept separated from the application:
the application sends a normal ApplicationEvent - everything else
is implemented in a separate package, that could be packaged and
distributed separatedly
* Created a new table outbox
* Added the event-type OutboxEvent, which is captured in the outbox
* UserEvent is now a subclass of OutboxEvent
* Added an OutboxListener that transactionally captures the events
Kai Moritz [Sun, 7 Feb 2021 14:03:12 +0000 (15:03 +0100)]
Added a script that illustrates the example
Kai Moritz [Sun, 25 Oct 2020 15:34:05 +0000 (16:34 +0100)]
Added a profile, that starts the app with a PostgreSQL-DB
* Added the dependency for the PostgreSQL-driver
* Added the new profile
* Configured Flyway to apply db-specific SQL
* Added a PostgreSQL-DB to the setup for Docker Compose as "postgres"
* Added a named volume for the data of the service "postgres"
* Selected the new profile "prod" for the service "jdbc"
Kai Moritz [Sun, 25 Oct 2020 15:31:03 +0000 (16:31 +0100)]
The application can be started as a container via Docker Compose
* Added docker-maven-plugin to build an image of the application
* Added a setup for Docker Compose, that starts the image as container
Kai Moritz [Sun, 25 Oct 2020 13:10:18 +0000 (14:10 +0100)]
Switched to Flayway for schema-creation
Kai Moritz [Tue, 15 Sep 2020 15:27:20 +0000 (17:27 +0200)]
Switchted to @TransactionalEventListener
* This listener ensures, that the event is fired in a specific tx-phase
* The default-phase is AFTER_COMMIT, which fits our use-case perfectly
Kai Moritz [Sun, 25 Oct 2020 14:24:39 +0000 (15:24 +0100)]
Wiredly enforcing uniqe-users with an exception
Kai Moritz [Mon, 14 Sep 2020 19:49:58 +0000 (21:49 +0200)]
The app emitts events for created / deleted users
Kai Moritz [Fri, 10 Jul 2020 12:54:21 +0000 (14:54 +0200)]
Simple web-app example for spring-boot-data-jdbc