BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage Presentations High Performance Microservices with Ratpack and Spring Boot

High Performance Microservices with Ratpack and Spring Boot

Bookmarks
01:11:05

Summary

Dan Woods presents Ratpack and Spring Boot's complementary integrations, and demonstrates, through live coding, building a high performance microservice.

Bio

Dan Woods is an avid Java and Cloud enthusiast, and has been building high scale distributed systems for the last several years.

About the conference

SpringOne Platform brings together the people, process and tools for delivering and operating software services. Learn and share with the startups and enterprises leveraging modern Java with Spring connecting all the pieces of the modern software puzzle from developer, operator, architect, data scientist to executive.

Recorded at:

Nov 24, 2016

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • Can't share I/O in distributed architecture

    by Owen Rubel,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    You still appear to be binding the communication logic and business logic in the application and thus cannot share the communication data/logic with the other services in your architecture (ie proxy,MQ,etc).

    This makes it IMPOSSIBLE to do your checks early, creates excessive I/O overhead, cannot share data without massive duplication, cannot synchronize data, etc.

    You are using patterns and habits meant for 'centralized architecture' while trying to design with microservices which are intended for 'distributed architecture.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT