步骤 8:和应用交互

为了与服务交互,可以实现 REST 服务,将命令服务(HTTP Put Request)从查询服务(HTTP Get Request)中分离出来。我已经创建了一个前端Web应用程序来激活服务,如图8所示。

图 8. 购物车前端

步骤 8:和应用交互 - 图1

用户界面通过 Servlet 进行交互,其中命令由 CommandGateway 分派:

  1. private ApplicationContext ac;
  2. private CommandGateway commandGateway;
  3. @Override
  4. protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  5. response.setContentType("text/html");
  6. String itemId=request.getParameter("id");
  7. Integer quantity=Integer.parseInt(request.getParameter("quantity"));
  8. AddItemCommand addItemCommand=new AddItemCommand(itemId);
  9. addItemCommand.setQuantity(quantity);
  10. logger.debug("quantity:" + quantity);
  11. logger.debug("id:" + itemId);
  12. CommandCallback commandCallback = new CommandCallback<Object>() {
  13. @Override
  14. public void onSuccess(Object result) {
  15. logger.debug("Expected this command to fail");
  16. }
  17. @Override
  18. public void onFailure(Throwable cause) {
  19. logger.debug("command exception", cause.getMessage());
  20. }
  21. };
  22. //asynchronous call – with command callback
  23. commandGateway.send(addItemCommand, commandCallback);
  24. }
  25. @Override
  26. public void init(ServletConfig config) throws ServletException {
  27. super.init(config);
  28. ac = new ClassPathXmlApplicationContext("/axon-db2-configuration.xml");
  29. commandGateway= ac.getBean(CommandGateway.class);
  30. }

在 servlet 初始化中,我加载了所有Axon组件的配置,包含在 Spring 配置文件中的。

另外,您可能会注意到这些命令是通过命令网关进行调度的。在示例中,我以异步方式发送 AddItemCommand,而不等待流程结束。我注册了一个 command callback 以便出现最终异常时能被通知。这允许系统通知用户,如果库存中的实际可用性是否小于所请求的数量。(如果另一个用户在第一个用户正在查阅目录时将该商品添加到自己的购物车中,可能会发生这种情况。)