-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Added support for repeated field query params #15
Conversation
This looks great! Thanks for the contribution. :) |
Thank you for creating the project in the first place! |
Exactly right. Actually, server streaming already works if you check out #14 (though it's a WIP -- I'd wanted to complete client streams before merging). I'm happy to prioritize merging server streaming if it's of use to you now. |
I think this should just be a matter of publishing the appropriate artifact name. https://github.com/Xorlev/grpc-jersey/blob/master/build.gradle#L156-L183 |
@gfecher Streaming (server->client) has been released with 0.2.0. Please file issues if you have any trouble or ideas on improvements. :) |
Thanks, it worked a treat. I have a number of questions (I'm new to gRPC), maybe you can help. Now I'm trying to get swagger (and swagger-ui) going with the generated resource. Do you have any suggestions? So far I found an incredibly hacky way of injecting in the @Api annotation at runtime so that swagger discover it (based on https://stackoverflow.com/a/30287201/8483863). My other question is a bit more general: I want the gRPC server exposed as well as the REST interface. For this I created 2 Many thanks, |
I'd support a code generation option to emit Swagger annotations. Like the HttpRule extension that the protoc extension leverages, you could add an extension which lets you define the rest of the Swagger metadata. The grpc-gateway project does exactly this.
|
No description provided.