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: grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/autoconfigure/GrpcServerAutoConfiguration.java
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -108,8 +108,6 @@ public GrpcServiceDiscoverer defaultGrpcServiceDiscoverer() {
Copy file name to clipboardExpand all lines: grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/service/exceptionhandling/GrpcExceptionAspect.java
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,14 @@
32
32
importorg.springframework.stereotype.Component;
33
33
34
34
importio.grpc.stub.StreamObserver;
35
-
importlombok.RequiredArgsConstructor;
36
35
importlombok.extern.slf4j.Slf4j;
37
36
38
37
/**
39
-
* Exception handling for thrown {@link RuntimeException} inside gRPC service classes, which implements
40
-
* {@link io.grpc.BindableService}.
38
+
* Exception handling for thrown {@link RuntimeException} inside annotated CLasses with
39
+
* {@link net.devh.boot.grpc.server.service.GrpcService @GrpcService}, which implement {@link io.grpc.BindableService}.
40
+
* <p>
41
+
* After calling the mapped Methods to the corresponding Exception, the returned {@link Throwable} is beeing send to the
Copy file name to clipboardExpand all lines: grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/service/exceptionhandling/GrpcExceptionHandlerMethodResolver.java
0 commit comments