620 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
93
views
Axon Framework with postgresql: Using Bytea instead of OID not working
I'm using axon framework 4.12.1 with postgresql (17), flyway and spring boot (3.5.6).
Following the recommendations I changed the sql migration files to use bytea instead of oid and configured the ...
1
vote
0
answers
90
views
How to access event timestamp in @EventSourcingHandler in Axon Framework?
I’m using Spring Boot with Axon (axon-eventsourcing:4.5.8) and want to capture the timestamp of an event inside an aggregate.
My handler looks like this:
@EventSourcingHandler
public void on(FooEvent ...
0
votes
1
answer
37
views
Axon: How do you configure Misfire Instructions for a Quartz Deadline Manager?
Using Axon, I have an aggregate that schedules a deadline. The deadline triggers as expected as long as the server is running at the time the deadline was specified for. When I shut the server down ...
1
vote
2
answers
80
views
Springboot relocate models package
In my Spring Boot project, I have a package named com.example.models. I want to relocate this package to com.example.mymodels when running mvn install, how can rename package using maven?
I used the ...
0
votes
1
answer
101
views
Axon NoHandlerForCommandException when using AxonFramework without Spring Boot
Building upon my 2 previous questions:
Using AxonFramework without Spring and with Kafka + PostgreSQL
Axon is unable to resolve the Event in the EventHandler
I have the following structure:
A ...
1
vote
1
answer
79
views
Axon is unable to resolve the Event in the EventHandler
[13:26:44 WARN] [org.axonframework.config.DefaultConfigurer]: One of the start handlers in phase [-2147483648] failed with the following exception:
2025年03月22日 14:26:44 java.util.concurrent....
0
votes
2
answers
83
views
Axon event handler is skipping events
I have latest Spring Boot app, latest Axon Framework, single instance, Postgres as event store, AxonServer community as command and query bus.
Lately mentioned event handler below is rarely skipping ...
0
votes
1
answer
82
views
Using AxonFramework without Spring and with Kafka + PostgreSQL
I'm trying to access the events of my Spring instance that publishes Axon events to Kafka and stores them in PostgreSQL. To accomplish this we created the following interface:
public interface ...
1
vote
1
answer
101
views
How axon works with kafka for event processor?
I would like to know if I need to do some message persistence configuration in Kafka, in case I want to do the replay at some point, or if when I trigger the replay it pulls it from the EventStore and ...
user avatar
user22349142
1
vote
1
answer
76
views
Subscribing Event Processor not rolling back events on exception
I'm using oracle database as event store and Subscribing Event Processor, when an exception is thrown in one of the event handlers, I want the events to be rolled back, but that does not happen.
Here'...
1
vote
1
answer
29
views
AggregateTestFixture .registerIgnoredField on nested abstract object not working
I have the problem that the field in the abstract class "uitworpAggregateId" will not be found by the fixture method registerIgnoredField().
But the field "gebeurtenisId" is found.
...
2
votes
1
answer
40
views
Why does OrderInfoDto become null in the event handler of CanceledPreemptProductEvent in Axon Saga?
I am implementing a microservices architecture (MSA) using Axon and Saga in Spring Boot. While setting data in OrderInfoDto when the StartedOrderSagaEvent event handler is executed, I encountered an ...
0
votes
1
answer
64
views
Unable to publish event between microservices with Axon framework
I'm trying to learn Axon Framework/Server for sending events between microservices, so that I can build a saga orchestration pattern. I've already implemented CreateModelCommand and ModelAggregate. I ...
0
votes
1
answer
40
views
Unable to get queue messages from rabbitmq in Spring project
I am trying to get my application to consume messages from rabbitmq queue but after a message has been added to the queue my application does not consume it and the logs does not show anything.
This ...
0
votes
3
answers
204
views
Connecting to AxonServer node failed: UNAVAILABLE: Network closed for unknown reason
While trying to connect to axon server using docker image of it:
version: '3'
services:
axonserver:
image: axoniq/axonserver:2024年1月2日-jdk-17-nonroot
hostname: axonserver
container_name: ...