There are two business sub projects using Spring Cloud Function. They will be bundled to one Spring Boot Application. Is it possible to declare spring.cloud.function.definition
property multiple times in different property files like below?
Project A:
spring:
cloud:
function:
definition: AProducer;AConsumer
bindings:
...
Project B:
spring:
cloud:
function:
definition: BProducer;BConsumer
bindings:
...
If it's not possible, how to handle such use case?