Add JMX support to the Spring Integration starter
Closes gh-1440
This commit is contained in:
parent
c820d94f1a
commit
dcb4fe8304
|
@ -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.
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1 +1 @@
|
|||
provides: spring-integration-core,spring-integration-file,spring-integration-http,spring-integration-stream
|
||||
provides: spring-integration-core,spring-integration-java-dsl,spring-integration-jmx
|
Loading…
Reference in New Issue