Spring Cloud Function 3.0.4

Spring Cloud Function is a project with the following high-level goals:

Promote the implementation of business logic via functions.

Decouple the development lifecycle of business logic from any specific runtime target so that the same code can run as a web endpoint, a stream processor, or a task.

Support a uniform programming model across serverless providers, as well as the ability to run standalone (locally or in a PaaS).

Enable Spring Boot features (auto-configuration, dependency injection, metrics) on serverless providers.

It abstracts away all of the transport details and infrastructure, allowing the developer to keep all the familiar tools and processes, and focus firmly on business logic.
Features

Spring Cloud Function features:

Choice of programming styles - reactive, imperative or hybrid.

Function composition and adaptation (e.g., composing imperative functions with reactive).

Support for reactive function with multiple inputs and outputs allowing merging, joining and other complex streaming operation to be handled by functions.

Transparent type conversion of inputs and outputs.

Packaging functions for deployments, specific to the target platform (e.g., Project Riff, AWS Lambda and more)

Adapters to expose function to the outside world as HTTP endpoints etc.

Deploying a JAR file containing such an application context with an isolated classloader, so that you can pack them together in a single JVM.

Compiling strings which are Java function bodies into bytecode, and then turning them into @Beans that can be wrapped as above.

Adapters for AWS Lambda, Microsoft Azure, Apache OpenWhisk and possibly other "serverless" service providers.

Here’s a complete, executable, testable Spring Boot application (implementing a simple string manipulation):

@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

@Bean
public Function<String, String> uppercase() {
return value -> value.toUpperCase();
}
}

Sample Projects

Vanilla

Plain Old Function

AWS Lambda

Microsoft Azure

Openwhisk

Quick start
Bootstrap your application with Spring Initializr.

发布了0 篇原创文章 · 获赞 0 · 访问量 1534

猜你喜欢

转载自blog.csdn.net/blog_programb/article/details/104718820