35
REACTIVE JAVA EE

REACTIVE JAVA EE - RainFocus Java...A few words aboutME [email protected] @olbpetersson JUG Gothenburg (JavaForum Göteborg)

  • Upload
    others

  • View
    6

  • Download
    0

Embed Size (px)

Citation preview

Page 1: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

REACTIVE JAVA EE

Page 2: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

MEA few words about

[email protected]@olbpetersson

JUG Gothenburg(JavaForum Göteborg)

Page 3: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

THE SHOW MUST GO WRONG

Page 4: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 5: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 6: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 7: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 8: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

TL;DRDON’T BLOCK, BE

RESPONSIVE

Page 9: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

DON’T STOP ME NOW

Page 10: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

BUT WHY?

Page 11: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

HOW?

Page 12: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

RESPONSIVESO YOU SAY

Page 13: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

WEBSOCKETI SAY

Page 14: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 15: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

var webSocket =new WebSocket(“ws://domain.com/endpoint”);

webSocket.onMessage = function(event){console.log(event.data);

};

webSocket.send(“Is this the real life?”)

Page 16: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

var webSocket =new WebSocket(“ws://domain.com/endpoint”);

webSocket.onMessage = function(message){console.log(message);

};

webSocket.send(“Is this the real life?”)

Page 17: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

var webSocket =new WebSocket(“ws://domain.com/endpoint”);

webSocket.onMessage = function(message){console.log(message);

};

webSocket.send(“Is this the real life?”)

Page 18: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 19: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

MESSAGE DRIVEN

SO YOU SAY

Page 20: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

MessageDrivenBean

I SAY

Page 21: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 22: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

Event & Observes

Page 23: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)
Page 24: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

@ASYNCHRONOUS

Page 25: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

CompletableFuture

Page 26: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

UNDER PRESSURE

Page 27: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

AsyncResponse

Page 28: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

RESILIENCE

Page 29: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

BECOME REACTIVE TODAY

Page 30: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

THESE SLIDEShttp://widr.se/olb

Page 31: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

*My presentations- https://speakerdeck.com/olbpetersson

*Lightbend - https://www.lightbend.com/

*Reactive manifesto - https://www.reactivemanifesto.org/

*Reza Rahman Reactive Java EE Let me count the ways - https://www.slideshare.net/reza_rahman/reactive-javaee

*Gatling - http://gatling.io/#/

Page 32: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

*My github - http://github.com/olbpetersson

*Squeed technical blog - http://blog.squeed.com/

*Queen - https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d

Page 33: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

THANK YOU

Page 34: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

I WANT TO RIDE MY BICYCLE

Page 35: REACTIVE JAVA EE - RainFocus Java...A few words aboutME ola.petersson@squeed.com @olbpetersson JUG Gothenburg (JavaForum Göteborg)

QUESTIONS