I was struggling using Protobuf in Java, thank you so much!
@MrQwadr4 жыл бұрын
Thank you very much for this video!
@santiagosuarez4653 жыл бұрын
Very helpful thank you very much
@MaxMautner3 жыл бұрын
You’re very welcome-glad that it helped you 🙏
@rahilkumar3558 Жыл бұрын
I am not able to build the gradle project after adding plugin n dependency. Any idea on this? * Exception is: org.gradle.api.ProjectConfigurationException: A problem occurred configuring root project 'TestGRPC'. at org.gradle.configuration.project.LifecycleProjectEvaluator.wrapException(LifecycleProjectEvaluator.java:75) aused by: org.gradle.api.artifacts.UnknownConfigurationException: Configuration with name 'compile' not found. at org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.createNotFoundException(DefaultConfigurationContainer.java:161)
@bernardgonzales65182 жыл бұрын
Thank you sir! Really appreciate the tutorial
@BikashMainali11 ай бұрын
Don't we need to add protoc compiler in gradle file? How did it compile proto file and convert it into java? In my case, it compiled but there is a compile time error in generated java class.
@andreyshelestov53533 жыл бұрын
Helped me a lot. Thanks!
@kintalivenkat46112 жыл бұрын
Thankyou for your video . its useful . Actually how to write spring rest services and it will receive protobuf as input . do we have any spring and proto buf example video . if yes please post it . Thankyou
@taniaagnesgf2152 жыл бұрын
What should I do if it shows "mkdir: /Users/goeimacbook/scratch: No such file or directory" error message when I run mkdir ~/scratch/protobuftest ?
@MaxMautner2 жыл бұрын
Try “mkdir -P ~/scratch/protobuftest” instead
@workingthread42112 жыл бұрын
Why did you download protoc and compile the proto file in console when, at the end, you use a gradle plugin to do the same again? Couldn't you just have copy-pasted the generated file instead of using the gradle plugin to generate it?
@MaxMautner2 жыл бұрын
Showing that there is more than one way to do things matey
@bassamry3 жыл бұрын
thanks for the clear tutorial! Are there any special steps for Android for using protobufs?
@MaxMautner3 жыл бұрын
Nope, nothing different I can think of
@navkkrnair4 жыл бұрын
Appreciate if you can show how the generated class can implement a custom interface. It seems next to impossible from the documentations where they talk about Plugin Insertion Points but no proper examples are available!!
@MaxMautner4 жыл бұрын
Can you elaborate on why you need to do that?
@navkkrnair4 жыл бұрын
@@MaxMautner Was going through Akka Persistence (Typed) where there was a need for Command and Event Interfaces (as Markers) and the implementations would need to be serialized.