我正在使用Axon + Spring Boot创建一个简单的应用程序,只是为了确保我在实际项目中使用之前了解Axon框架中的基本组件。 在TaskAggregate类中有一个使用@CommandHandler注释的方法,当我通过CommandGateway发送命令时应该调用该方法,但是在运行应用程序后我得到了异常:
localhost
根据文档,@ CommandHandler注释应该足以将命令hander订阅到命令总线。我想我一定错过了什么。你能看看下面的代码并指出我正确的方向吗?
的pom.xml
Exception in thread "main" org.axonframework.commandhandling.NoHandlerForCommandException: No handler was subscribed to command [com.xxx.axontest.task.CreateTaskCommand]
App.java
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xxx</groupId>
<artifactId>axon-test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<axon.version>3.0.6</axon.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.7.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-spring-boot-starter</artifactId>
<version>${axon.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
CreateTaskCommand.java
package com.xxx.axontest;
import org.axonframework.commandhandling.gateway.CommandGateway;
import org.axonframework.eventsourcing.eventstore.EventStorageEngine;
import org.axonframework.eventsourcing.eventstore.inmemory.InMemoryEventStorageEngine;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import com.xxx.axontest.task.CreateTaskCommand;
@SpringBootApplication
public class App {
public static void main(String[] args) {
ConfigurableApplicationContext configurableApplicationContext = SpringApplication.run(App.class, args);
CommandGateway commandGateway = configurableApplicationContext.getBean(CommandGateway.class);
commandGateway.send(new CreateTaskCommand(123, "asd"));
}
@Bean
public EventStorageEngine eventStorageEngine() {
return new InMemoryEventStorageEngine();
}
@Bean
public AnnotationCommandHandlerBeanPostProcessor
annotationCommandHandlerBeanPostProcessor() {
return new AnnotationCommandHandlerBeanPostProcessor();
}
}
TaskCreatedEvent.java
package com.xxx.axontest.task;
import org.axonframework.commandhandling.TargetAggregateIdentifier;
public class CreateTaskCommand {
@TargetAggregateIdentifier
private int taskId;
private String name;
public CreateTaskCommand(int taskId, String name) {
this.taskId = taskId;
this.name = name;
}
public int getTaskId() {
return taskId;
}
public String getName() {
return name;
}
}
TaskAggregate.java
package com.xxx.axontest.task;
import org.axonframework.commandhandling.TargetAggregateIdentifier;
public class TaskCreatedEvent {
@TargetAggregateIdentifier
private int taskId;
private String name;
public int getTaskId() {
return taskId;
}
public String getName() {
return name;
}
}
提前致谢。
答案 0 :(得分:4)
我认为您需要使用@Aggregate而不是@AggregateRoot
来注释您的聚合。
@Aggregate
作为注释都是@AggregateRoot
注释,但Spring Boot Axon Starter模块也使用它来表示该类的聚合工厂和Repository
必须创建。
此外,这意味着您的聚合上的@CommandHandler
注释函数也将被找到并注册到CommandBus
,可能会解决您捕获的异常。
否则,来自Allard的YouTube上的webinars用于在版本3中启动Axon应用程序可以为您提供一些见解。
但是,简而言之,请尝试切换@AggregateRoot
的{{1}}注释:-)
此外,您应该将@Aggregate
注释函数调整为@CommandHandler
作为CreateTaskCommand
的构造函数。
最后,Axon要求你有一个no-arg构造函数供你聚合,所以还要在那里添加一个TaskAggregate
构造函数。
答案 1 :(得分:2)
基于上面的代码,一些评论:
鉴于您提供的代码,我无法解释此异常,但显式定义的AnnotationCommandHandlerBeanPostProcessor可能会妨碍此方法。
[编辑]史蒂文正确地注意到@AggregateRoot注释。它应该是@Aggregate。以上评论仍然有效,但与例外[/ Edited]
没有直接关系答案 2 :(得分:0)
您还需要将处理程序注册到命令总线。我发现this tutorial可以帮到你。从那里快速突出显示:
@Configuration
public class AppConfiguration {
@Bean
public SimpleCommandBus commandBus() {
SimpleCommandBus simpleCommandBus = new SimpleCommandBus();
// This manually subscribes the command handler:
// DebitAccountHandler to the commandbus.
simpleCommandBus.subscribe(DebitAccount.class.getName(), new DebitAccountHandler());
return simpleCommandBus;
}
}
P.S。一件重要的事情:事件和命令应该是不可变的(没有设置者)
答案 3 :(得分:0)
基于评论
我想分享修改后的实际代码。
@Aggregate
public class TaskAggregate {
private Logger logger = LogManager.getLogger(TaskCreatedEvent.class);
@AggregateIdentifier
private int taskId;
private String name;
TaskAggregate(){ // default constructor needed for axon
}
@CommandHandler
public void TaskAggregate(CreateTaskCommand createTaskCommand) {
logger.info("Command received");
AggregateLifecycle.apply(new TaskCreatedEvent());
}
@EventSourcingHandler
public void onTaskCreatedEvent(TaskCreatedEvent taskCreatedEvent) {
logger.info("Event received");
this.name = taskCreatedEvent; // use this to set the aggregate meber than get and setter.
}
}
为 CreateTaskCommand 添加@CommandHandler 注释的函数,作为 TaskAggregate 的构造函数。最后,Axon要求您有一个 no-arg构造函数来进行聚合,因此还要在其中添加一个公共的 TaskAggregate() {}构造函数。