spring integration(2)
-
[Spring Integration] Spring-integration-samples
Spring-integration-samples Spring-integration-samples Related GitHub proejects DSL (Domain Specific Language, 도메인 특화 언어) Basicamqp - Demonstrates the functionality of the various AMQP Adapters다양한 AMQP 어댑터의 기능을 보여줍니다. barrier - Show how to suspend a thread until some asynchronous event occurs비동기 이벤트가 발생할 때 까지 스레드를 일시 중지하는 방법을 보여줍니다. control-bus Demonstraates the fundctionality of the Control Bus컨..
2017.01.11 -
[Spring] Spring Integration - Message
Spring Integration - Message Spring Integration 에서 메시지는 포괄적인 데이터 컨테이너를 의미한다. 메시지는 헤더와 페이로드로 구성된다. 어떤 타입의 오브젝트도 메시지의 페이로드가 될 수 있고, 각각의 메시지 헤더는 추가 가능한 키-값 형태의 프로퍼티들로 구성된다. Message Interface 메시지 인터페이스는 다음과 같다. public interface Message { T getPayload(); MessageHeaders getHeaders(); } Message Headers 페이로드가 어떤 타입이던 관계없듯이 헤더의 값도 어떤 값이던 관계없다. MessageHeaders 클래스는 java.util.Map 인터페이스를 구현했기 때문이다. public fi..
2016.12.27