Questions regarding the usage of the Spring Integration Java DSL (Domain Specific Language) extension
The Spring Integration JavaConfig and DSL extension provides a set of convenient Builders and a fluent API to configure Spring Integration message flows from Spring @Configuration classes.
I have a (legacy) TCP service that has multiple processes. Each process runs on the same host, but on a different port. The service is single threaded, so the way to increase throughput is to round-robin each request across each of the ports.
I am…
I am new to apache camel.
I want to create a service bus (middle ware) using apache camel by making a jetty Post request and then get the response from the server.
Here is what I've done
I am trying to upload a file to remote SFTP server. I created the outbound flow from the same
@Configuration
public class SftpIntegrationFlow {
@Value("${report-uploader.reportingServer.remoteDirectory}")
private String…
I want to send a file to SFTP server. I have created a outbound flow for it
@Bean
public IntegrationFlow sftpOutboundFlow() {
return IntegrationFlows
.from("toSftpChannel")
…
I want to set timeout attribute in multicast tag from a external property file. I can use properties without issue with {{property.name}} syntax in uri,etc definitions.
However below usage seems like not permitted. Any ideas how to work around /…
I am trying camel for some routing with Spring DSL. I am not able to get the message to the destinations. I know i am missing something please help me to figure out the issue.
I have set the headers in deviceMessageRouteIdentifier as below
…
Tried to create a very simple route to read from a FTP location using Java as well as Spring DSLs.
The route created with Java DSL is working as expected.
from("{{ftp.server}}").to("file:target/download").log(
"Downloaded file…
I would like to know if Camel provides any standard aggregation strategies out-of-the-box. I have been researching but I have only be able to find some of the in the unit test. Those ones cannot be used from the actual code. I am trying to use it…
I have Spring inbound for the FTP
I am looking at the document
https://docs.spring.io/spring-integration/reference/html/ftp.html
If you happened to have one or more files sitting in the local-directory,
it would process those files before it would…