IT/Gradle2018. 2. 4. 00:11gradle 관련 dependency 설정

■ Gradle에서 Reactive Streams 라이브러리 추가 시 // https://mvnrepository.com/artifact/org.reactivestreams/reactive-streamscompile group: 'org.reactivestreams', name: 'reactive-streams', version: '0.4.0.M2'// Reactive Streamscompile "org.reactivestreams:reactive-streams:1.0.1" ■ Gradle에서 slf4j 라이브러리 추가 시//slf4jcompile 'org.slf4j:slf4j-api:1.7.5'//compile 'org.slf4j:slf4j-simple:1.7.5' ■ Gradle에서 log4j 라이브..

IT/Spring Framework2018. 2. 3. 23:34토비의 봄 TV 7회 스프링 리액티브 프로그래밍 (3) - Reactive Streams - Schedulers

(시청일 : 20171105) - https://www.youtube.com/watch?v=Wlqu1xvZCak ■ Reactive Streams - Schedulers package toby.live;import lombok.extern.slf4j.Slf4j;import org.reactivestreams.Publisher;import org.reactivestreams.Subscriber;import org.reactivestreams.Subscription;import org.springframework.scheduling.concurrent.CustomizableThreadFactory;import java.util.concurrent.ExecutorService;import java.util.c..

IT/Spring Framework2018. 2. 3. 23:32토비의 봄 TV 6회 스프링 리액티브 프로그래밍 (2) - Reactive Streams - Operators

(시청일 : 20171105) - https://www.youtube.com/watch?v=DChIxy9g19o ■ Reactive Streams - Operators데이터 제어(변환/조작 등)스케쥴링퍼블리싱 제어 ex) take Publisher -> [Data1] -> op1 -> [Data2] -> op2 -> [Data3] -> Subscriber import lombok.extern.slf4j.Slf4j;import org.reactivestreams.Publisher;import org.reactivestreams.Subscriber;import org.reactivestreams.Subscription;import java.util.List;import java.util.function.Bi..

토비의 봄 TV 5회 스프링 리액티브 프로그래밍 (1) - Reactive Streams
IT/Spring Framework2018. 2. 3. 23:31토비의 봄 TV 5회 스프링 리액티브 프로그래밍 (1) - Reactive Streams

(시청일 : 20171029) - https://www.youtube.com/watch?v=8fenTR3KOJo- Reactive Streams => http://www.reactive-streams.org- Reactive Streams Specification => https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.1/README.md#specification ■ Reactive : 외부 이벤트나 데이터 등이 발생할 때, 이에 대응하여 동작하는 프로그래밍 방식 - FRP(Functional Reactive Programming)- RFP(Reactive Functional Programming)- RX(Reactive Extensi..

image