fookaiming opened a new issue #423:
URL: https://github.com/apache/rocketmq-spring/issues/423
When defining an interface as below
`public interface ConsumerTemplate<T, V> extends RocketMQListener<T>,
RocketMQPushConsumerLifecycleListener `
And implementation as below
```
public class ConsumerA implements ConsumerTemplate<T, V> {
public void onMessage(T audioRecordDTO) {
}
}
```
The Type of the message is simply a string, not T. I have tried to debug, it
seems that the DefaultRocketMQListenerContainer cannot resolve the Type
messageType correctly.
For your reference:
Please check MethodParameter getMethodParameter() define in
DefaultRocketMQListenerContainer.java
--
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]