diff --git a/spring-cloud-function.html b/spring-cloud-function.html index c16574bf8..c925c9789 100644 --- a/spring-cloud-function.html +++ b/spring-cloud-function.html @@ -95,6 +95,7 @@ $(addBlockSwitches);
  • Function Catalog and Flexible Function Signatures @@ -405,6 +406,19 @@ a controlled way.

    +

    Function Component Scan

    +
    +

    Spring Cloud Function will scan for implementations of Function, +Consumer and Supplier in a package called functions if it +exists. Using this feature you can write functions that have no +dependencies on Spring - not even the @Component annotation is +needed. If you want to use a different package, you can set +spring.cloud.function.scan.packages. You can also use +spring.cloud.function.scan.enabled=false to switch off the scan +completely.

    +
    +
    +

    Function Routing

    Since version 2.2 Spring Cloud Function provides routing feature allowing