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
<1> Make sure to pull the version that matches the release.
57
57
@@ -65,7 +65,7 @@ In this case you'll need to forcibly and explicitly set the `grpc` version to
65
65
configurations.all {
66
66
resolutionStrategy.eachDependency { details ->
67
67
if ("io.grpc".equalsIgnoreCase(details.requested.group)) {
68
-
details.useVersion "1.45.1"
68
+
details.useVersion "1.47.0"
69
69
}
70
70
}
71
71
}
@@ -409,6 +409,7 @@ If the more detailed tuning is needed for security setup, please use custom conf
409
409
=== Custom gRPC Server Configuration
410
410
411
411
To intercept the `io.grpc.ServerBuilder` instance used to build the `io.grpc.Server`, you can add bean that inherits from `org.lognet.springboot.grpc.GRpcServerBuilderConfigurer` to your context and override the `configure` method. +
412
+
Multiple configurers are also supported. +
412
413
By the time of invocation of `configure` method, all discovered services, including theirs interceptors, had been added to the passed builder. +
413
414
In your implementation of `configure` method, you can add your custom configuration:
414
415
@@ -420,8 +421,6 @@ public class MyGRpcServerBuilderConfigurer extends GRpcServerBuilderConfigurer{
420
421
public void configure(ServerBuilder<?> serverBuilder){
0 commit comments