Spring Cloud Function 3.2 is out!
Spring Cloud 2021.0.0 is finally out and with it you have Spring Cloud Function 3.2
While the full list of features, enhancements and bug fixes is available here, I’d like to call out few of them in this post and provide some details.
gRPC Support
In addition to an already existing support for invoking function via AWS Lambda, RSocket, Spring Cloud Stream etc., Spring Cloud Function now allows you to invoke function via gRPC. Two ways to benefit from it.
Spring Message
Given the wide adaption of Spring Messaging, one way of benefiting from gRPC support is by embracing Spring's Message
.
Spring Cloud Function provides GrpcSpringMessage
schema modeled after Spring's Message. It is internally converted to Spring Message to benefit from all of the existing support for Spring Messaging…