spring-cloud-function icon indicating copy to clipboard operation
spring-cloud-function copied to clipboard

Results 129 spring-cloud-function issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When using Kotlin functions for `@Component` beans causes the type resolution of the bean to fail. **Sample** Use the example from https://github.com/spring-cloud/spring-cloud-stream-samples/tree/main/kafka-streams-samples/kafka-streams-branching and rewrite it to use...

waiting-on-feedback

Thanks to everyone contributing to this project! really respect all the hard work When considering this package and incorporating it into a solution (maybe in an enterprise), testing/code coverage concerns...

ideal-for-contribution
AZURE

**Describe the bug** In my spring-cloud function project I want to modify the behavior of the json serializer. In version 3.2.x of this project, this was possible by providing a...

waiting-on-feedback

`FunctionInvocationWrapper` `invokeConsumer()` and `invokeFunction()` should create a `Message` with the converted payload and throw a `MessageHandlingException` with that message. Consider the following: ```java @SpringBootApplication public class So76610419Application { public static...

**Describe the bug** I am trying to follow the [reference documentation section](https://cloud.spring.io/spring-cloud-function/reference/html/spring-cloud-function.html#_comparing_functional_with_traditional_bean_definitions) about registering functions with the Functional Bean definition approach, **but using Kotlin**. Probably I am doing something wrong,...

ideal-for-contribution

**Describe the bug** I'm fairly certiain this is something I've done wrong, but I can't see where. The [docs](https://cloud.spring.io/spring-cloud-function/reference/html/spring-cloud-function.html#_kotlin_lambda_support) suggest that this should work: ```kotlin @SpringBootApplication class FunctionalApp { @Bean...

bug
3.2.x backport

**Describe the bug** This error is from the process-aot goal: Environment: OS: Linux JDK: OpenJDK 17 Spring Boot: 3.0.0 Spring Cloud Function: 4.0.0-SNAPSHOT Step to reproduce: mvn spring-boot:process-aot ``` Exception...

waiting-on-feedback

In web applications, we tend to valid input object/parameter. In Spring REST we can do so by: - mentioning validations on fields of DTO class - using @Validated annotation on...

ideal-for-contribution

So, we register functions as `@Bean`, then we take them from BF, wrap them and add them to FunctionCatalog and perform further lookups on FunctionCatalog. However a common mistake is...

enhancement