novicate commented on issue #4535:
URL: https://github.com/apache/rocketmq/issues/4535#issuecomment-1172143007
I'm sorry for my poor spelling.
What I'm trying to say is:
If I configure like this, my project won't start.
public class BaseRocketMQConsumer<T> implements RocketMQListener<T> {
@Override
public void onMessage(T message) {
beforeConsume();
doConsume();
afterConsume();
}
}
@RocketMQMessageListener(topic=xxx, consumerGroup=xxx)
public class ConsumerA extends BaseRocketMQConsumer<Entity> {
}
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]