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: spring-grpc-docs/src/main/antora/modules/ROOT/pages/server.adoc
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,10 +83,13 @@ dependencies {
83
83
}
84
84
----
85
85
86
-
The `spring.grpc.server.*` properties will be ignored in facour of the regular `server.*` properties in this case.
86
+
The `spring.grpc.server.*` properties will be ignored in facour of the regular `server.*` properties in this case (with the exception of `spring.grpc.server.max-inbound-message-size`).
87
87
The servlet that is created is mapped to process HTTP POST requests to the paths defined by the registered services, as `/<service-name>/*`.
88
88
Clients can connect to the server using that path, which is what any gRPC client library will do.
89
89
90
+
The gRPC server has fewer configuration options when running in a servlet container, as the servlet container is responsible for the network layer.
91
+
You can still add `ServerBuilderCustomizer` beans to customize the server as it is built, but some features common in the "native" builders are not available and may throw exceptions at runtime.
0 commit comments