Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jangalinski/camunda-history-async
Async decoupling of Camunda history events
https://github.com/jangalinski/camunda-history-async
camunda extension history springboot
Last synced: 16 days ago
JSON representation
Async decoupling of Camunda history events
- Host: GitHub
- URL: https://github.com/jangalinski/camunda-history-async
- Owner: jangalinski
- License: apache-2.0
- Created: 2021-02-18T21:59:56.000Z (over 3 years ago)
- Default Branch: develop
- Last Pushed: 2021-03-18T16:19:15.000Z (over 3 years ago)
- Last Synced: 2024-05-01T22:23:50.942Z (7 months ago)
- Topics: camunda, extension, history, springboot
- Language: Java
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# camunda-history-async
Async decoupling of Camunda history events## Idea
* register a HistoryEventHandler that just forwards HistoryEvents via ApplicationEventPublisher.
* implement a TransactionalEventListener that forwards the receided events to the DbHistoryEventHandler after the original transaction commits._not working so far_!
## Reproduce
* start the spring application
* open the h2-console in the browser (http://localhost:8080/h2-console , url: jdbc:h2:mem:camunda-history-async, user&pw:sa)
* query act_hi_actinst .... empty
* open cockpit (http://localhost:8080/, user&pw:admin)
* start process manually in tasklist
* check act_hi_actinst in h2 again ...see