|
1 | 1 | /*
|
2 |
| - * Copyright 2012-2013 the original author or authors. |
| 2 | + * Copyright 2012-2016 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
16 | 16 |
|
17 | 17 | package sample.integration;
|
18 | 18 |
|
| 19 | +import java.io.File; |
| 20 | + |
19 | 21 | import org.springframework.boot.SpringApplication;
|
20 | 22 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
21 | 23 | import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
22 |
| -import org.springframework.context.annotation.ImportResource; |
| 24 | +import org.springframework.context.annotation.Bean; |
| 25 | +import org.springframework.integration.channel.DirectChannel; |
| 26 | +import org.springframework.integration.dsl.IntegrationFlow; |
| 27 | +import org.springframework.integration.dsl.IntegrationFlows; |
| 28 | +import org.springframework.integration.dsl.SourcePollingChannelAdapterSpec; |
| 29 | +import org.springframework.integration.dsl.core.Pollers; |
| 30 | +import org.springframework.integration.dsl.support.Consumer; |
| 31 | +import org.springframework.integration.file.FileReadingMessageSource; |
| 32 | +import org.springframework.integration.file.FileWritingMessageHandler; |
23 | 33 |
|
24 | 34 | @SpringBootApplication
|
25 | 35 | @EnableConfigurationProperties(ServiceProperties.class)
|
26 |
| -@ImportResource("integration-context.xml") |
27 | 36 | public class SampleIntegrationApplication {
|
28 | 37 |
|
| 38 | + @Bean |
| 39 | + public FileReadingMessageSource fileReader() { |
| 40 | + FileReadingMessageSource reader = new FileReadingMessageSource(); |
| 41 | + reader.setDirectory(new File("target/input")); |
| 42 | + return reader; |
| 43 | + } |
| 44 | + |
| 45 | + @Bean |
| 46 | + public DirectChannel inputChannel() { |
| 47 | + return new DirectChannel(); |
| 48 | + } |
| 49 | + |
| 50 | + @Bean |
| 51 | + public DirectChannel outputChannel() { |
| 52 | + return new DirectChannel(); |
| 53 | + } |
| 54 | + |
| 55 | + @Bean |
| 56 | + public FileWritingMessageHandler fileWriter() { |
| 57 | + FileWritingMessageHandler writer = new FileWritingMessageHandler( |
| 58 | + new File("target/output")); |
| 59 | + writer.setExpectReply(false); |
| 60 | + return writer; |
| 61 | + } |
| 62 | + |
| 63 | + @Bean |
| 64 | + public IntegrationFlow integrationFlow(SampleEndpoint endpoint) { |
| 65 | + return IntegrationFlows.from(fileReader(), new FixedRatePoller()) |
| 66 | + .channel(inputChannel()).handle(endpoint).channel(outputChannel()) |
| 67 | + .handle(fileWriter()).get(); |
| 68 | + } |
| 69 | + |
29 | 70 | public static void main(String[] args) throws Exception {
|
30 | 71 | SpringApplication.run(SampleIntegrationApplication.class, args);
|
31 | 72 | }
|
32 | 73 |
|
| 74 | + private static class FixedRatePoller |
| 75 | + implements Consumer<SourcePollingChannelAdapterSpec> { |
| 76 | + |
| 77 | + @Override |
| 78 | + public void accept(SourcePollingChannelAdapterSpec spec) { |
| 79 | + spec.poller(Pollers.fixedRate(500)); |
| 80 | + } |
| 81 | + |
| 82 | + } |
| 83 | + |
33 | 84 | }
|
0 commit comments