You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -472,7 +472,7 @@ grpcSpringBoot {
472
472
}
473
473
----
474
474
475
-
Here are the tests and reactive grpc sample service.
475
+
Here are the https://github.com/LogNet/grpc-spring-boot-starter/blob/master/grpc-spring-boot-starter-demo/src/test/java/org/lognet/springboot/grpc/reactive/ReactiveDemoTest.java[tests] and https://github.com/LogNet/grpc-spring-boot-starter/blob/master/grpc-spring-boot-starter-demo/src/main/java/org/lognet/springboot/grpc/demo/ReactiveGreeterGrpcService.java[reactive grpc sample service].
Copy file name to clipboardExpand all lines: grpc-spring-boot-starter-gradle-plugin/README.adoc
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,18 +42,23 @@ by applying `com.google.protobuf` gradle plugin.
42
42
43
43
== Configure
44
44
45
+
All settings are optional (have reasonable defaults):
45
46
46
47
[source,groovy]
47
48
----
48
49
grpcSpringBoot {
49
50
grpcSpringBootStarterVersion.set("X.X.X")// <1>
50
51
grpcVersion.set("X.X.X")//<2>
51
52
protocVersion.set("X.X.X")//<3>
53
+
reactiveFeature.set(ReactiveFeature.REACTOR)//<4>
54
+
reactiveProtocVersion.set("X.X.X")//<5>
52
55
}
53
56
----
54
57
<1> `io.github.lognet:grpc-spring-boot-starter` version to use, defaults to the same version as this plugin.
55
58
<2> `grpc` version to use, defaults to the version the `io.github.lognet:grpc-spring-boot-starter` was compiled with (see version matrix https://github.com/LogNet/grpc-spring-boot-starter/blob/master/ReleaseNotes.md[here])
56
59
<3> Version of `com.google.protobuf:protoc` protocol compiler to use (defaults to `3.21.7`)
60
+
<4> Enables https://github.com/salesforce/reactive-grpc[salesforce's reactive-grpc] protoc plugin, defaults to `ReactiveFeature.OFF` (supports `ReactiveFeature.REACTOR` and `ReactiveFeature.RX`)
61
+
<5> `reactive-grpc` version to use, defaults to `1.2.3`
57
62
58
63
59
64
The version of `com.google.protobuf` can be controlled via `pluginManagement` block :
0 commit comments