You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring Integration [<imgsrc="https://build.spring.io/plugins/servlet/wittified/build-status/INT-MAIN">](https://build.spring.io/browse/INT-MAIN)[](https://gitter.im/spring-projects/spring-integration?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2
4
==================
3
5
6
+
Extends the Spring programming model to support the well-known Enterprise Integration Patterns.
7
+
Spring Integration enables lightweight messaging within Spring-based applications and supports integration with external systems via declarative adapters.
8
+
Those adapters provide a higher-level of abstraction over Spring’s support for remoting, messaging, and scheduling.
9
+
Spring Integration’s primary goal is to provide a simple model for building enterprise integration solutions while maintaining the separation of concerns that is essential for producing maintainable, testable code.
10
+
11
+
Using the Spring Framework encourages developers to code using interfaces and use dependency injection (DI) to provide a Plain Old Java Object (POJO) with the dependencies it needs to perform its tasks.
12
+
Spring Integration takes this concept one step further, where POJOs are wired together using a messaging paradigm and individual components may not be aware of other components in the application.
13
+
Such an application is built by assembling fine-grained reusable components to form a higher level of functionality.
14
+
WIth careful design, these flows can be modularized and also reused at an even higher level.
15
+
16
+
In addition to wiring together fine-grained components, Spring Integration provides a wide selection of channel adapters and gateways to communicate with external systems.
17
+
Channel Adapters are used for one-way integration (send or receive); gateways are used for request/reply scenarios (inbound or outbound).
For annotations or Java DSL configuration you need to *enable* Spring Integration in the application context:
41
+
42
+
```java
43
+
@EnableIntegration
44
+
@Configuration
45
+
publicclassExampleConfiguration {
46
+
47
+
}
48
+
```
49
+
4
50
# Code of Conduct
5
51
6
52
Please see our [Code of conduct](https://github.com/spring-projects/.github/blob/main/CODE_OF_CONDUCT.md).
@@ -9,6 +55,11 @@ Please see our [Code of conduct](https://github.com/spring-projects/.github/blob
9
55
10
56
Please see our [Security policy](https://github.com/spring-projects/spring-integration/security/policy).
11
57
58
+
# Documentation
59
+
60
+
The Spring Integration maintains reference documentation ([published](https://docs.spring.io/spring-integration/docs/current/reference/html/) and [source](src/reference/asciidoc)), GitHub [wiki pages](https://github.com/spring-projects/spring-integration/wiki), and an [API reference](https://docs.spring.io/spring-integration/docs/current/api/).
61
+
There are also [guides and tutorials](https://spring.io/guides) across Spring projects.
0 commit comments