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
dcb4fe83
Commit
dcb4fe83
authored
May 13, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add JMX support to the Spring Integration starter
Closes gh-1440
parent
c820d94f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
13 deletions
+11
-13
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+6
-4
pom.xml
spring-boot-samples/spring-boot-sample-integration/pom.xml
+0
-4
pom.xml
...ng-boot-samples/spring-boot-sample-parent-context/pom.xml
+0
-4
pom.xml
spring-boot-starters/spring-boot-starter-integration/pom.xml
+4
-0
spring.provides
...r-integration/src/main/resources/META-INF/spring.provides
+1
-1
No files found.
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
dcb4fe83
...
...
@@ -4382,10 +4382,12 @@ caching is enabled.
[[boot-features-integration]]
== Spring Integration
Spring Integration provides abstractions over messaging and also other transports such as
HTTP, TCP etc. If Spring Integration is available on your classpath it will be initialized
through the `@EnableIntegration` annotation. Message processing statistics will be
published over JMX if `'spring-integration-jmx'` is also on the classpath. See the
Spring Boot offers several conveniences for working with Spring Integration, including
the `spring-boot-starter-integration` '`Starter POM`'. Spring Integration provides
abstractions over messaging and also other transports such as HTTP, TCP etc. If Spring
Integration is available on your classpath it will be initialized through the
`@EnableIntegration` annotation. Message processing statistics will be published over JMX
if `'spring-integration-jmx'` is also on the classpath. See the
{sc-spring-boot-autoconfigure}/integration/IntegrationAutoConfiguration.{sc-ext}[`IntegrationAutoConfiguration`]
class for more details.
...
...
spring-boot-samples/spring-boot-sample-integration/pom.xml
View file @
dcb4fe83
...
...
@@ -31,10 +31,6 @@
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-file
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-jmx
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
...
...
spring-boot-samples/spring-boot-sample-parent-context/pom.xml
View file @
dcb4fe83
...
...
@@ -32,10 +32,6 @@
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-file
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-jmx
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
...
...
spring-boot-starters/spring-boot-starter-integration/pom.xml
View file @
dcb4fe83
...
...
@@ -34,5 +34,9 @@
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-java-dsl
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.integration
</groupId>
<artifactId>
spring-integration-jmx
</artifactId>
</dependency>
</dependencies>
</project>
spring-boot-starters/spring-boot-starter-integration/src/main/resources/META-INF/spring.provides
View file @
dcb4fe83
provides: spring-integration-core,spring-integration-file,spring-integration-http,spring-integration-stream
\ No newline at end of file
provides: spring-integration-core,spring-integration-java-dsl,spring-integration-jmx
\ No newline at end of file
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