Hey, is there a way to prevent the generation of interfaces and publisher/subscriber methods?
If I have understood it correctly, this library is primarily to be used with Spring Cloud Streams. Our project uses Spring Kafka instead of Spring Cloud Streams though, so we do not need these generated interfaces and methods. Currently, if we do not implement these interfaces, we encounter an error because they are not loaded into the application context, so we are forced to either implement them within a not used class or exclude them from the component scan.
Hey, is there a way to prevent the generation of interfaces and publisher/subscriber methods?
If I have understood it correctly, this library is primarily to be used with Spring Cloud Streams. Our project uses Spring Kafka instead of Spring Cloud Streams though, so we do not need these generated interfaces and methods. Currently, if we do not implement these interfaces, we encounter an error because they are not loaded into the application context, so we are forced to either implement them within a not used class or exclude them from the component scan.