fengyiluo commented on issue #2691:
URL: https://github.com/apache/rocketmq/issues/2691#issuecomment-784168443


   启动类里应该加上@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);
       }
       


----------------------------------------------------------------
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]


Reply via email to