事务提交后发送 JMS 消息

发布于 2025-01-20 19:51:55 字数 943 浏览 1 评论 0原文

我有一个应用程序(app1),我正在与Hibernate和JMS合作。我有一种用@transactional注释的方法。此方法将数据插入数据库,然后将数据发送到MQ。 我正在遇到一个问题,即消费者应用程序(APP2)从MQ获取消息并调用App1,但是由于App1未完成数据库,因此返回一个错误,说找不到数据。

在发送JMS消息之前,有什么方法可以在数据库中提交数据库插入?

@Transactional
public void create(Data data){
     doSomeValidation();
     anotherClass.insertInDB(data.name, data.email);

     thirdClass.sendDataToMQ(data.id);
}
@Transactional
public void insertInDB(String name, String email) {
     Entity entity = new Entity();
     entity.setName(name);
     entity.setEmail(email);
     repository.saveAndFlush(entity)
}
@Transactional
public void sendDataToMQ(int id) {
     Entity entity = repository.findById(id);
     jmsTemplate.setSessionTransacted(true);
     jmsTemplate.convertAndSend(someDestination, new Message(entity)message -> {
                return message;
            });
    doSomeUpdateInDB(int id);
}

I have a application (APP1) where I'm working with hibernate and JMS. I have a method annotated with @Transactional. This method inserts data in a database and later sends data to a MQ.
I'm encountering a problem where the consumer application (APP2) gets the message from the MQ and calls APP1, but as APP1 is not finished commiting data the database, it returns an error saying that the data could not be found.

Is there a way where I can commit the database inserts before sending the JMS message?

@Transactional
public void create(Data data){
     doSomeValidation();
     anotherClass.insertInDB(data.name, data.email);

     thirdClass.sendDataToMQ(data.id);
}
@Transactional
public void insertInDB(String name, String email) {
     Entity entity = new Entity();
     entity.setName(name);
     entity.setEmail(email);
     repository.saveAndFlush(entity)
}
@Transactional
public void sendDataToMQ(int id) {
     Entity entity = repository.findById(id);
     jmsTemplate.setSessionTransacted(true);
     jmsTemplate.convertAndSend(someDestination, new Message(entity)message -> {
                return message;
            });
    doSomeUpdateInDB(int id);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文