Advertisement

Sri Lanka's First and Only Platform for Luxury Houses and Apartment for Sale, Rent

Tuesday, January 19, 2016

RxJava and Spring Boot

It has been a really long time (more than six months) since I wrote my last blog post. Life was a bit busy with coming down from Malaysia and finding a new job in Sri Lanka and settling down. It doesn't mean I was not working with new technologies. Got the chance to work with alot of new technologies and frameworks.

Ok having said that while going through the usual weekly dose of InfoQ videos I was bumped on Simon BaslĂ© and Laurent Doguin's talk on Introducing RxJava into a Spring Boot REST API. 

I have blogged about Reactive programming previously in this post. Which is all about writing non blocking, concurrent, functional code. Two main aspects of Reactive manifesto is;

  1. Reactive Streams (Observable in RxJava)
  2. Reactive Extensions (Observer/Subscriber in RxJava)

But this time I wanted to go beyond and learn the cores of Reactive Programming. I build a small application which has a Service which returns an Observable (Non blocking) which can be used to asynchronously perform many tasks such filter, zip, map etc.


This Service can be used in many ways to produces many results as we need and I have used findAll() method in findByName() method to filter records which are only matching the given name. Likewise this gives many more options.

And in the Controller this Service can be used to retrieve the data we want and finally collect those as a List or any other way and pass it back.


Spring a return type named DeferredResult which will send a response asynchronously when it is finished processing. Either by returning a DeferredResult from the controller method or by writing a custom ReturnValueHandler for Observable we can send asynchronous results.



The complete source code can be found at https://github.com/shazin/reactiveapp and I strongly advice to go through the presentation in the references section.

References

  1. Introducing RxJava into a Spring Boot REST API - http://www.infoq.com/presentations/rxjava-spring-boot
  2. Introduction to Reactive Programming - http://www.infoq.com/presentations/rxjava-reactor
Trackbacks/Pings