Undertow Concepts: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Undertow") |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Undertow#Subjects|Undertow]] | * [[Undertow#Subjects|Undertow]] | ||
=Overview= | |||
Undertow is a web server written in Java. It provides both blocking and non-blocking APIs based on NIO. It has a composition-based architecture that allows assembling a web server combining small single purpose handlers. | |||
Undertow is embeddable, its lifecycle is controller by the embedding application. | |||
Undertow is the default web server in [[WildFly]]. | |||
=Handler= |
Revision as of 21:02, 18 January 2016
Internal
Overview
Undertow is a web server written in Java. It provides both blocking and non-blocking APIs based on NIO. It has a composition-based architecture that allows assembling a web server combining small single purpose handlers.
Undertow is embeddable, its lifecycle is controller by the embedding application.
Undertow is the default web server in WildFly.