We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, it seems that the multiple producer support does not work, it was fixed on this issue #59
Im attaching the project that does not work with multiple producers.
async-api-project.zip
Calling http://localhost:8080/springwolf/docs will bring the following json, but only one producer is in the json!
{ "Async-api-test": { "asyncapi": "2.0.0", "info": { "title": "Async-api-test", "version": "0.0.1" }, "servers": { "kafka": { "url": "localhost:9092", "protocol": "kafka" } }, "channels": { "ACCOUNT": { "subscribe": { "bindings": { "kafka": { } }, "message": { "name": "com.example.asyncapi.model.ClassB", "title": "ClassB", "payload": { "$ref": "#/components/schemas/ClassB" } } } } }, "components": { "schemas": { "ClassA": { "type": "object" }, "ClassB": { "type": "object" } } } } }
Thanks
The text was updated successfully, but these errors were encountered:
Oops, is this on the last release?
Sorry, something went wrong.
Yes indeed.
<dependency> <groupId>io.github.springwolf</groupId> <artifactId>springwolf-kafka</artifactId> <version>0.5.0</version> </dependency>
Fixed, please use version springwolf-kafka-0.6.1 and note the the binding field in ProducerData has changed to operationBinding (see https://springwolf.github.io/docs/documenting-producers#producerdata). You can also use the new KafkaProducerData instead.
springwolf-kafka-0.6.1
binding
ProducerData
operationBinding
KafkaProducerData
Thanks for providing the example project, it really helped me nail the problem.
stavshamir
No branches or pull requests
Hello, it seems that the multiple producer support does not work, it was fixed on this issue #59
Im attaching the project that does not work with multiple producers.
async-api-project.zip
Calling http://localhost:8080/springwolf/docs will bring the following json, but only one producer is in the json!
Thanks
The text was updated successfully, but these errors were encountered: