Spring gRPC reference documentation covering server, client, security, and configuration
92
Pending
Does it follow best practices?
Impact
92%
2.19xAverage score across 3 eval scenarios
Pending
The risk profile of this skill
Spring Boot integration for gRPC. Provides autoconfiguration for gRPC servers and clients, channel factories, interceptors, health/reflection services, observability, and Spring Security integration.
1.1.0-M14.1.x9090<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.1.0-M1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>Create a BindableService bean annotated with @Service to expose a gRPC service. Inject a GrpcChannelFactory to build client stubs.
@ImportGrpcClients, customizers, interceptors, security (mTLS, Basic, OAuth2)evals