Skip to content

Commit c068285

Browse files
committed
Streamline Integration Starter and add Java DSL to it
This commit streamlines the Integration Starter by removing the file http, ip, and stream modules as they are not always used by a majority of apps that use Spring Integration and can also pull in other, unwanted dependencies. Additionally, a dependency on spring-integration-java-dsl has been added. This makes it easy for users to configure Spring Integration using Java configuration (the recommended approach), rather than via XML. The Integration sample has been updated to use the DSL. Further improvements could be made once the sample is using Java 8. Closes spring-projectsgh-5528
1 parent e4324a5 commit c068285

File tree

8 files changed

+79
-48
lines changed

8 files changed

+79
-48
lines changed

spring-boot-dependencies/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
<spring-data-releasetrain.version>Hopper-SR1</spring-data-releasetrain.version>
148148
<spring-hateoas.version>0.19.0.RELEASE</spring-hateoas.version>
149149
<spring-integration.version>4.3.0.M1</spring-integration.version>
150+
<spring-integration-java-dsl.version>1.1.2.RELEASE</spring-integration-java-dsl.version>
150151
<spring-loaded.version>1.2.5.RELEASE</spring-loaded.version>
151152
<spring-mobile.version>1.1.5.RELEASE</spring-mobile.version>
152153
<spring-plugin.version>1.2.0.RELEASE</spring-plugin.version>
@@ -2064,6 +2065,11 @@
20642065
</exclusion>
20652066
</exclusions>
20662067
</dependency>
2068+
<dependency>
2069+
<groupId>org.springframework.integration</groupId>
2070+
<artifactId>spring-integration-java-dsl</artifactId>
2071+
<version>${spring-integration-java-dsl.version}</version>
2072+
</dependency>
20672073
<dependency>
20682074
<groupId>org.springframework.mobile</groupId>
20692075
<artifactId>spring-mobile-device</artifactId>

spring-boot-samples/spring-boot-sample-integration/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<groupId>org.springframework.boot</groupId>
2828
<artifactId>spring-boot-starter-actuator</artifactId>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.springframework.integration</groupId>
32+
<artifactId>spring-integration-file</artifactId>
33+
</dependency>
3034
<dependency>
3135
<groupId>org.springframework.integration</groupId>
3236
<artifactId>spring-integration-jmx</artifactId>

spring-boot-samples/spring-boot-sample-integration/src/main/java/sample/integration/HelloWorldService.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2013 the original author or authors.
2+
* Copyright 2012-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,14 +16,16 @@
1616

1717
package sample.integration;
1818

19-
import org.springframework.beans.factory.annotation.Autowired;
20-
import org.springframework.stereotype.Component;
19+
import org.springframework.stereotype.Service;
2120

22-
@Component
21+
@Service
2322
public class HelloWorldService {
2423

25-
@Autowired
26-
private ServiceProperties configuration;
24+
private final ServiceProperties configuration;
25+
26+
public HelloWorldService(ServiceProperties configuration) {
27+
this.configuration = configuration;
28+
}
2729

2830
public String getHelloMessage(String name) {
2931
return this.configuration.getGreeting() + " " + name;

spring-boot-samples/spring-boot-sample-integration/src/main/java/sample/integration/SampleEndpoint.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2013 the original author or authors.
2+
* Copyright 2012-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,16 +19,18 @@
1919
import java.io.File;
2020
import java.io.FileInputStream;
2121

22-
import org.springframework.beans.factory.annotation.Autowired;
2322
import org.springframework.integration.annotation.MessageEndpoint;
2423
import org.springframework.integration.annotation.ServiceActivator;
2524
import org.springframework.util.StreamUtils;
2625

2726
@MessageEndpoint
2827
public class SampleEndpoint {
2928

30-
@Autowired
31-
private HelloWorldService helloWorldService;
29+
private final HelloWorldService helloWorldService;
30+
31+
public SampleEndpoint(HelloWorldService helloWorldService) {
32+
this.helloWorldService = helloWorldService;
33+
}
3234

3335
@ServiceActivator
3436
public String hello(File input) throws Exception {

spring-boot-samples/spring-boot-sample-integration/src/main/java/sample/integration/SampleIntegrationApplication.java

+54-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2013 the original author or authors.
2+
* Copyright 2012-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,18 +16,69 @@
1616

1717
package sample.integration;
1818

19+
import java.io.File;
20+
1921
import org.springframework.boot.SpringApplication;
2022
import org.springframework.boot.autoconfigure.SpringBootApplication;
2123
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;
2333

2434
@SpringBootApplication
2535
@EnableConfigurationProperties(ServiceProperties.class)
26-
@ImportResource("integration-context.xml")
2736
public class SampleIntegrationApplication {
2837

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+
2970
public static void main(String[] args) throws Exception {
3071
SpringApplication.run(SampleIntegrationApplication.class, args);
3172
}
3273

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+
3384
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
logging.file: /tmp/logs/app.log
21
logging.level.org.springframework.integration.file: DEBUG
32
service.greeting: Hello
4-
debug: true

spring-boot-samples/spring-boot-sample-integration/src/main/resources/integration-context.xml

-20
This file was deleted.

spring-boot-starters/spring-boot-starter-integration/pom.xml

+1-13
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,7 @@
3232
</dependency>
3333
<dependency>
3434
<groupId>org.springframework.integration</groupId>
35-
<artifactId>spring-integration-file</artifactId>
36-
</dependency>
37-
<dependency>
38-
<groupId>org.springframework.integration</groupId>
39-
<artifactId>spring-integration-http</artifactId>
40-
</dependency>
41-
<dependency>
42-
<groupId>org.springframework.integration</groupId>
43-
<artifactId>spring-integration-ip</artifactId>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.springframework.integration</groupId>
47-
<artifactId>spring-integration-stream</artifactId>
35+
<artifactId>spring-integration-java-dsl</artifactId>
4836
</dependency>
4937
</dependencies>
5038
</project>

0 commit comments

Comments
 (0)