- Only the Order Service is implemented the gRPC APIs.
-
The location of the order service's proto file:
ftgo-order-service/src/main/proto/OrderService.proto- Options
Option Description java_multiple_files- If
true, it would generate multiple stub files for different message types respectively. - If
false, it would generate only one stub file including all the message types.
java_package- The packake path of where you want to put your stub file (You need to manually move the stub file to this package path after generating it)
java_outer_classname- The name of the stub file.
objc_class_prefix- Specify a prefix to be used for your generated classes.
- If
- Options
-
Command for generating stub
./gradlew :ftgo-order-service:generateProto -
Copy the stub file into the java package specified in
java_packageoption.- The stub file will be generated in:
ftgo-order-service/build/generated/source/proto/main/java.
- The stub file will be generated in: