욱'S 노트

Spring XD - Source Module 개발하기 본문

Programming/Spring XD

Spring XD - Source Module 개발하기

devsun 2015. 3. 5. 16:13

소개


Spring XD에서 현재 지원하는 4가지 타입은 stream을 위한 source, sink, processor 및 배치처리를 위한 job이다. 이번엔 custom source module을 개발해보자. 


Stream의 첫번째 모듈은 항상 source이다. Source 모듈은 Spring Integration으로 구성되며 외부리소스로부터 inbound channel adapter를 통해 데이터를 피딩받아 output channel로 메시지를 생성하는 역할을 담당한다.


Spring Integration은 다양한 전송 및 데이터 저장소와의 연계를 위해 다양한 adapter들을 제공한다.(JMS, File, Http, Web Services, Mail 등등) 일반적으로 source 모듈은 기제공된 inbound channel adapter를 이용해서 생성하게 된다. 


Create the module Application Context file



'Programming > Spring XD' 카테고리의 다른 글

Spring XD - DIRT(Distributed Runtime)  (0) 2015.03.16
Spring XD - DIRT(Distributed Runtime) 시작하기  (0) 2015.03.12
Spring XD - Modules  (0) 2015.03.04
Spring XD - Streams  (0) 2015.03.03
Spring XD - Job Module 개발하기  (0) 2015.02.05
Comments