Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
ce3aafa7
Commit
ce3aafa7
authored
May 01, 2014
by
Artem Bilan
Committed by
Andy Wilkinson
May 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Spring Integration 4.0
Closes #751
parent
438cff25
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
107 additions
and
29 deletions
+107
-29
pom.xml
spring-boot-autoconfigure/pom.xml
+5
-0
IntegrationAutoConfiguration.java
...toconfigure/integration/IntegrationAutoConfiguration.java
+39
-0
spring.factories
...utoconfigure/src/main/resources/META-INF/spring.factories
+1
-1
IntegrationAutoConfigurationTests.java
...figure/integration/IntegrationAutoConfigurationTests.java
+42
-0
integration.groovy
spring-boot-cli/samples/integration.groovy
+3
-3
SpringIntegrationCompilerAutoConfiguration.java
...configure/SpringIntegrationCompilerAutoConfiguration.java
+12
-15
integration.xml
...resources/org/springframework/boot/groovy/integration.xml
+0
-9
pom.xml
spring-boot-dependencies/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-integration/pom.xml
+4
-0
No files found.
spring-boot-autoconfigure/pom.xml
View file @
ce3aafa7
...
@@ -97,6 +97,11 @@
...
@@ -97,6 +97,11 @@
<artifactId>
spring-jdbc
</artifactId>
<artifactId>
spring-jdbc
</artifactId>
<optional>
true
</optional>
<optional>
true
</optional>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-core
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-jms
</artifactId>
<artifactId>
spring-jms
</artifactId>
...
...
spring-boot-
cli/src/main/java/org/springframework/boot/groovy/EnableIntegrationPatterns
.java
→
spring-boot-
autoconfigure/src/main/java/org/springframework/boot/autoconfigure/integration/IntegrationAutoConfiguration
.java
View file @
ce3aafa7
/*
/*
* Copyright 201
2-201
4 the original author or authors.
* Copyright 2014 the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* You may obtain a copy of the License at
*
*
*
http://www.apache.org/licenses/LICENSE-2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* distributed under the License is distributed on an "AS IS" BASIS,
...
@@ -14,26 +14,26 @@
...
@@ -14,26 +14,26 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
groovy
;
package
org
.
springframework
.
boot
.
autoconfigure
.
integration
;
import
java.lang.annotation.Documented
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnClass
;
import
java.lang.annotation.ElementType
;
import
java.lang.annotation.Retention
;
import
java.lang.annotation.RetentionPolicy
;
import
java.lang.annotation.Target
;
import
org.springframework.boot.cli.compiler.autoconfigure.SpringIntegrationCompilerAutoConfiguration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.
context.annotation.ImportResource
;
import
org.springframework.
integration.config.EnableIntegration
;
/**
/**
* Pseudo annotation used to trigger {@link SpringIntegrationCompilerAutoConfiguration}.
* {@link org.springframework.boot.autoconfigure.EnableAutoConfiguration Auto-configuration}
* for Spring Integration.
*
* @author Artem Bilan
* @since 1.1
*/
*/
@Target
(
ElementType
.
TYPE
)
@Documented
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Configuration
@Configuration
@ImportResource
(
"classpath:/org/springframework/boot/groovy/integration.xml"
)
@ConditionalOnClass
(
EnableIntegration
.
class
)
public
@interface
EnableIntegrationPatterns
{
public
class
IntegrationAutoConfiguration
{
@Configuration
@EnableIntegration
protected
static
class
IntegrationConfiguration
{
}
}
}
spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories
View file @
ce3aafa7
...
@@ -14,6 +14,7 @@ org.springframework.boot.autoconfigure.data.MongoRepositoriesAutoConfiguration,\
...
@@ -14,6 +14,7 @@ org.springframework.boot.autoconfigure.data.MongoRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration,\
org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration,\
org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration,\
org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration,\
org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration,\
org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration,\
org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration,\
org.springframework.boot.autoconfigure.jms.JmsTemplateAutoConfiguration,\
org.springframework.boot.autoconfigure.jms.JmsTemplateAutoConfiguration,\
...
@@ -41,4 +42,3 @@ org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider=\
...
@@ -41,4 +42,3 @@ org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider=\
org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider,\
org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider,\
org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider,\
org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider,\
org.springframework.boot.autoconfigure.web.JspTemplateAvailabilityProvider
org.springframework.boot.autoconfigure.web.JspTemplateAvailabilityProvider
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/integration/IntegrationAutoConfigurationTests.java
0 → 100644
View file @
ce3aafa7
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
autoconfigure
.
integration
;
import
static
org
.
junit
.
Assert
.*;
import
org.junit.Test
;
import
org.springframework.context.annotation.AnnotationConfigApplicationContext
;
import
org.springframework.integration.support.channel.HeaderChannelRegistry
;
/**
* @author Artem Bilan
* @since 1.1
*/
public
class
IntegrationAutoConfigurationTests
{
private
final
AnnotationConfigApplicationContext
context
=
new
AnnotationConfigApplicationContext
();
@Test
public
void
integrationIsAvailable
()
{
this
.
context
.
register
(
IntegrationAutoConfiguration
.
class
);
this
.
context
.
refresh
();
assertNotNull
(
this
.
context
.
getBean
(
HeaderChannelRegistry
.
class
));
this
.
context
.
close
();
}
}
spring-boot-cli/samples/integration.groovy
View file @
ce3aafa7
package
org.test
package
org.test
@Co
mponent
@Co
nfiguration
@EnableIntegration
Patterns
@EnableIntegration
class
SpringIntegrationExample
implements
CommandLineRunner
{
class
SpringIntegrationExample
implements
CommandLineRunner
{
@Bean
@Bean
...
@@ -11,7 +11,7 @@ class SpringIntegrationExample implements CommandLineRunner {
...
@@ -11,7 +11,7 @@ class SpringIntegrationExample implements CommandLineRunner {
@Override
@Override
void
run
(
String
...
args
)
{
void
run
(
String
...
args
)
{
print
new
MessagingTemplate
(
input
()).
convertSendAndReceive
(
"World"
)
print
ln
new
MessagingTemplate
(
input
()).
convertSendAndReceive
(
"World"
,
String
)
}
}
}
}
...
...
spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/SpringIntegrationCompilerAutoConfiguration.java
View file @
ce3aafa7
/*
/*
* Copyright 2012-201
3
the original author or authors.
* Copyright 2012-201
4
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -21,43 +21,40 @@ import org.codehaus.groovy.control.customizers.ImportCustomizer;
...
@@ -21,43 +21,40 @@ import org.codehaus.groovy.control.customizers.ImportCustomizer;
import
org.springframework.boot.cli.compiler.AstUtils
;
import
org.springframework.boot.cli.compiler.AstUtils
;
import
org.springframework.boot.cli.compiler.CompilerAutoConfiguration
;
import
org.springframework.boot.cli.compiler.CompilerAutoConfiguration
;
import
org.springframework.boot.cli.compiler.DependencyCustomizer
;
import
org.springframework.boot.cli.compiler.DependencyCustomizer
;
import
org.springframework.boot.groovy.EnableIntegrationPatterns
;
/**
/**
* {@link CompilerAutoConfiguration} for Spring Integration.
* {@link CompilerAutoConfiguration} for Spring Integration.
*
*
* @author Dave Syer
* @author Dave Syer
* @author Artem Bilan
*/
*/
public
class
SpringIntegrationCompilerAutoConfiguration
extends
CompilerAutoConfiguration
{
public
class
SpringIntegrationCompilerAutoConfiguration
extends
CompilerAutoConfiguration
{
@Override
@Override
public
boolean
matches
(
ClassNode
classNode
)
{
public
boolean
matches
(
ClassNode
classNode
)
{
// Slightly weird detection algorithm because there is no @Enable annotation for
return
AstUtils
.
hasAtLeastOneAnnotation
(
classNode
,
"EnableIntegration"
);
// Integration
return
AstUtils
.
hasAtLeastOneAnnotation
(
classNode
,
"MessageEndpoint"
,
"EnableIntegrationPatterns"
);
}
}
@Override
@Override
public
void
applyDependencies
(
DependencyCustomizer
dependencies
)
{
public
void
applyDependencies
(
DependencyCustomizer
dependencies
)
{
dependencies
.
ifAnyMissingClasses
(
"org.springframework.integration.Message"
).
add
(
dependencies
.
ifAnyMissingClasses
(
"org.springframework.integration.config.EnableIntegration"
).
add
(
"spring-boot-starter-integration"
);
"spring-boot-starter-integration"
);
dependencies
.
ifAnyMissingClasses
(
"groovy.util.XmlParser"
).
add
(
"groovy-xml"
);
}
}
@Override
@Override
public
void
applyImports
(
ImportCustomizer
imports
)
{
public
void
applyImports
(
ImportCustomizer
imports
)
{
imports
.
addImports
(
"org.springframework.integration.Message"
,
imports
.
addImports
(
"org.springframework.messaging.Message"
,
"org.springframework.messaging.MessageChannel"
,
"org.springframework.messaging.PollableChannel"
,
"org.springframework.messaging.SubscribableChannel"
,
"org.springframework.messaging.MessageHeaders"
,
"org.springframework.integration.support.MessageBuilder"
,
"org.springframework.integration.support.MessageBuilder"
,
"org.springframework.integration.MessageChannel"
,
"org.springframework.integration.channel.DirectChannel"
,
"org.springframework.integration.channel.DirectChannel"
,
"org.springframework.integration.channel.QueueChannel"
,
"org.springframework.integration.channel.QueueChannel"
,
"org.springframework.integration.channel.ExecutorChannel"
,
"org.springframework.integration.channel.ExecutorChannel"
,
"org.springframework.integration.MessageHeaders"
,
"org.springframework.integration.core.MessagingTemplate"
,
"org.springframework.integration.core.MessagingTemplate"
,
"org.springframework.integration.core.SubscribableChannel"
,
"org.springframework.integration.config.EnableIntegration"
);
"org.springframework.integration.core.PollableChannel"
,
EnableIntegrationPatterns
.
class
.
getCanonicalName
());
imports
.
addStarImports
(
"org.springframework.integration.annotation"
);
imports
.
addStarImports
(
"org.springframework.integration.annotation"
);
}
}
}
}
spring-boot-cli/src/main/resources/org/springframework/boot/groovy/integration.xml
deleted
100644 → 0
View file @
438cff25
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns=
"http://www.springframework.org/schema/beans"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:int=
"http://www.springframework.org/schema/integration"
xsi:schemaLocation=
"http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"
>
<int:annotation-config
/>
</beans>
spring-boot-dependencies/pom.xml
View file @
ce3aafa7
...
@@ -86,12 +86,12 @@
...
@@ -86,12 +86,12 @@
<snakeyaml.version>
1.13
</snakeyaml.version>
<snakeyaml.version>
1.13
</snakeyaml.version>
<spock.version>
0.7-groovy-2.0
</spock.version>
<spock.version>
0.7-groovy-2.0
</spock.version>
<spring.version>
4.0.3.RELEASE
</spring.version>
<spring.version>
4.0.3.RELEASE
</spring.version>
<spring-integration.version>
3.0.2.RELEASE
</spring-integration.version>
<spring-batch.version>
2.2.6.RELEASE
</spring-batch.version>
<spring-batch.version>
2.2.6.RELEASE
</spring-batch.version>
<spring-data-gemfire.version>
1.3.3.RELEASE
</spring-data-gemfire.version>
<spring-data-gemfire.version>
1.3.3.RELEASE
</spring-data-gemfire.version>
<spring-data-redis.version>
1.1.1.RELEASE
</spring-data-redis.version>
<spring-data-redis.version>
1.1.1.RELEASE
</spring-data-redis.version>
<spring-data-releasetrain.version>
Codd-SR2
</spring-data-releasetrain.version>
<spring-data-releasetrain.version>
Codd-SR2
</spring-data-releasetrain.version>
<spring-hateoas.version>
0.9.0.RELEASE
</spring-hateoas.version>
<spring-hateoas.version>
0.9.0.RELEASE
</spring-hateoas.version>
<spring-integration.version>
4.0.0.RELEASE
</spring-integration.version>
<spring-plugin.version>
1.0.0.RELEASE
</spring-plugin.version>
<spring-plugin.version>
1.0.0.RELEASE
</spring-plugin.version>
<spring-rabbit.version>
1.2.2.RELEASE
</spring-rabbit.version>
<spring-rabbit.version>
1.2.2.RELEASE
</spring-rabbit.version>
<spring-mobile.version>
1.1.1.RELEASE
</spring-mobile.version>
<spring-mobile.version>
1.1.1.RELEASE
</spring-mobile.version>
...
...
spring-boot-starters/spring-boot-starter-integration/pom.xml
View file @
ce3aafa7
...
@@ -27,6 +27,10 @@
...
@@ -27,6 +27,10 @@
<groupId>
org.springframework
</groupId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-aop
</artifactId>
<artifactId>
spring-aop
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-messaging
</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-tx
</artifactId>
<artifactId>
spring-tx
</artifactId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment