Spring(5)
-
[Spring Cloud Zuul] What is Zuul?
What is Zuul? What is Zuul? Zuul is the front door for all requests from devices and web sites to the backend of the Netflix streaming applicationZuul 은 장치 및 웹 사이트에서Netflix 스트리밍 응용 프로그램의 백엔드에 대한 모든 요청 처리를 하기위한 front door 입니다. As an edge service applicationedge 서비스 응용프로그램 Zuul is built to enable dynamic routing, monitoring, resiliency and securityZuul은 동적 라우팅, 모니터링, 탄력성 및 보안 기능을 제공합니다. It also ha..
2017.01.18 -
[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] RestTemplate 웹(API서버) 요청
보호되어 있는 글입니다.
2017.01.10 -
[Spring JPA] Spring Data - JPA 기본작업흐름
보호되어 있는 글입니다.
2017.01.10 -
[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