i757 commented on issue #2691:
URL: https://github.com/apache/rocketmq/issues/2691#issuecomment-784684410
> 启动类里应该加上@EnableBinding(ProducerChannel.class),注意这里没有大括号。
> @SpringBootApplication
> @EnableBinding(ProducerChannel.class)
> public class ProducerStarter {
>
> ```
> public static void main(String[] args) {
> SpringApplication.run(ProducerStarter.class, args);
> }
> ```
>
> }
> //发送消息的方法如下:
> @Autowired
> private ProducerChannel producerChannel;
> //...
> public void testSend(){
> producerChannel. objectTx().send(msg);
> }
去掉@EnableBinding里面的大括号还是不行,TransactionListenerImpl里面的两个方法根本就没有调用
----------------------------------------------------------------
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]