gagado opened a new issue #253:
URL: https://github.com/apache/rocketmq-spring/issues/253
In my project, have multiple transaction message.
so, i definition multiple RocketMQLocalTransactionListener implement class;
one:
@Component
@RocketMQTransactionListener
public class OneMesssageListener implements RocketMQLocalTransactionListener
{
@Override
public RocketMQLocalTransactionState executeLocalTransaction(Message
msg, Object arg) {
}
}
two:
@Component
@RocketMQTransactionListener
public class TwoMesssageListener implements RocketMQLocalTransactionListener
{
@Override
public RocketMQLocalTransactionState executeLocalTransaction(Message
msg, Object arg) {
}
}
but,have a error:
rocketMQTemplate already exists RocketMQLocalTransactionListener;
i want know, if In one project, i have multiple transaction message.
What should i do?
thanks...
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]