Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
JBoss: Developer's Guide

You're reading from   JBoss: Developer's Guide A complete guide to the JBoss ecosystem

Arrow left icon
Product type Paperback
Published in Aug 2017
Publisher Packt
ISBN-13 9781788296199
Length 328 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Elvadas Nono Woguia Elvadas Nono Woguia
Author Profile Icon Elvadas Nono Woguia
Elvadas Nono Woguia
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. Introduction to the JBoss Ecosystem 2. Developing and Hosting Scalable Web Applications FREE CHAPTER 3. Custom Web Deployment using Undertow and Swarm 4. Storing and Accessing Distributed Data 5. Exposing Data as a Service 6. Integrating Applications with JBoss Fuse 7. Delivers Information Safely and Connects IoT 8. Making Better Decisions in Your Applications 9. Developing Workflows

Undertow - purpose and architecture

Undertow is a powerful and lightweight web server written in Java, supporting both blocking and non blocking I/O. With a non-blocking programming model, when the client sends a request to a server, most of the time it will be handled asynchronously and in two steps.

An asynchronous call returns immediately, without waiting for the I/O to complete. The completion of the I/O is later communicated to the caller through the triggering of a callback routine that is executed outside the linear control flow of the application.

Undertow relies on NIO to provide a powerful API, enabling users to build high-performance deployments in a composition architecture way. With Undertow, users can build a web server by combining small single-purpose handlers. Undertow supports Servlet 3.1, Websockets (JSR-356), and reverse proxy.

...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime