diff --git a/multi/multi__introduction.html b/multi/multi__introduction.html index 71f9d4aa7..c73a3e044 100644 --- a/multi/multi__introduction.html +++ b/multi/multi__introduction.html @@ -24,4 +24,4 @@ accessed over HTTP or messaging.

Spring Cloud Function has 4 main features endpoints and/or message stream listeners/publishers with RabbitMQ, Kafka etc.

  • Compiling strings which are Java function bodies into bytecode, and then turning them into @Beans that can be wrapped as above.
  • Deploying a JAR file containing such an application context with an isolated classloader, so that you can pack them together in a single -JVM.
  • Adapters for AWS Lambda, Azure, Apache OpenWhisk and possibly other "serverless" service providers.
  • Unresolved directive in spring-cloud-function.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/contributing-docs.adoc[]

    \ No newline at end of file +JVM.
  • Adapters for AWS Lambda, Azure, Apache OpenWhisk and possibly other "serverless" service providers.
  • [Note]Note

    Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github.

    \ No newline at end of file diff --git a/single/spring-cloud-function.html b/single/spring-cloud-function.html index 58f3791b0..f9755359f 100644 --- a/single/spring-cloud-function.html +++ b/single/spring-cloud-function.html @@ -24,7 +24,7 @@ accessed over HTTP or messaging.

    Spring Cloud Function has 4 main features endpoints and/or message stream listeners/publishers with RabbitMQ, Kafka etc.

  • Compiling strings which are Java function bodies into bytecode, and then turning them into @Beans that can be wrapped as above.
  • Deploying a JAR file containing such an application context with an isolated classloader, so that you can pack them together in a single -JVM.
  • Adapters for AWS Lambda, Azure, Apache OpenWhisk and possibly other "serverless" service providers.
  • Unresolved directive in spring-cloud-function.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/contributing-docs.adoc[]

    2. Getting Started

    Build from the command line (and "install" the samples):

    $ ./mvnw clean install

    (If you like to YOLO add -DskipTests.)

    Run one of the samples, e.g.

    $ java -jar spring-cloud-function-samples/function-sample/target/*.jar

    This runs the app and exposes its functions over HTTP, so you can +JVM.

  • Adapters for AWS Lambda, Azure, Apache OpenWhisk and possibly other "serverless" service providers.
  • [Note]Note

    Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github.

    2. Getting Started

    Build from the command line (and "install" the samples):

    $ ./mvnw clean install

    (If you like to YOLO add -DskipTests.)

    Run one of the samples, e.g.

    $ java -jar spring-cloud-function-samples/function-sample/target/*.jar

    This runs the app and exposes its functions over HTTP, so you can convert a string to uppercase, like this:

    $ curl -H "Content-Type: text/plain" localhost:8080/uppercase -d Hello
     HELLO

    You can convert multiple strings (a Flux<String>) by separating them with new lines

    $ curl -H "Content-Type: text/plain" localhost:8080/uppercase -d 'Hello
    diff --git a/spring-cloud-function.xml b/spring-cloud-function.xml
    index 26067248d..64e21e6c3 100644
    --- a/spring-cloud-function.xml
    +++ b/spring-cloud-function.xml
    @@ -71,7 +71,9 @@ JVM.
     Adapters for AWS Lambda, Azure, Apache OpenWhisk and possibly other "serverless" service providers.
     
     
    -Unresolved directive in spring-cloud-function.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/contributing-docs.adoc[]
    +
    +Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github.
    +
     
     
     Getting Started