Why can't Spring autowire my cloud stream Processor?
问题 I'm trying to implement a basic Processor from spring-cloud-stream. I've done this before on other projects, so I thought I was familiar with it. But this time Spring is having a problem creating via @Autowire my Processor reference inside a @Service component. I thought the important piece was the @EnableBinding(my.class) on the Application, but I have that. The error is No qualifying bean of type 'com.mycompany.config.BizSyncProcessor' available I also tried adding an @Component to the