【kafka】springboot工程能发消息,不能收消息

初学,起了一个springboot项目,写了一个生产者和一个消费者,能给集群kafka发消息,但是收不到,排查了种种!问题,结果时因为,springboot没能扫到我注册的component,我真服了…

@MapperScan("com.example.demo.mapper")
@ComponentScan("com.example")
@SpringBootApplication
public class TestServiceApplication {
    public static void main(String[] args) {
        SpringApplication.run(TestServiceApplication.class, args);
    }

}

各位还得注意一下,这俩扫描器的冲突,你就学吧,一学一个不吱声

你可能感兴趣的:(back-end,kafka,spring,boot,分布式)