jabrena / SpringCloudLab

SpringCloud examples
MIT License
0 stars 1 forks source link

Embedded containers #15

Open jabrena opened 8 years ago

jabrena commented 8 years ago

https://groups.google.com/forum/#!topic/pippo-java/yogzLt2-S2A http://bayou.io/draft/Comparing_Java_HTTP_Servers_Latencies.html https://www.google.es/trends/explore#q=tomcat%20web%20server%2C%20jetty%20web%20server%2C%20undertow%20web%20server&cmpt=q&tz=Etc%2FGMT-1 http://www.blog.btbw.pl/java/spring-boot-embedded-servlet-containers-tomcat-jetty-undertow/ https://www.reddit.com/r/java/comments/3wdjvu/what_are_the_disadvantagesweakness_of_undertow/ http://es.slideshare.net/SpringCentral/http2-for-the-web-developer https://github.com/bclozel/http2-experiments https://github.com/bclozel/http2-experiments/blob/master/src/main/java/http2xp/jetty/JettyHttp2Customizer.java https://picodotdev.github.io/blog-bitix/2015/10/aplicacion-java-autocontenida-con-spring-boot/ https://www.techempower.com/benchmarks/#section=data-r11&hw=peak&test=json http://undertow.io/ http://blog.arungupta.me/undertow-benchmarks-wildfly/ http://www.infoq.com/news/2015/06/jetty-celebrates-20-years http://caniuse.com/#feat=http2 http://callistaenterprise.se/blogg/teknik/2014/04/15/a-first-look-at-spring-boot/

Undertow is a flexible performant web server written in java, 
providing both blocking and non-blocking API’s based on NIO.
Undertow has a composition based architecture that allows you to build a web server by combining small single purpose handlers. 
The gives you the flexibility to choose between a full Java EE servlet 3.1 container, or a low level non-blocking handler, to anything in between.
Undertow is extremely lightweight, with the Undertow core jar coming in at under 1Mb. 
It is lightweight at runtime too, with a simple embedded server using less than 4Mb of heap space.

https://github.com/spring-projects/spring-boot/issues/3025 https://disqus.com/home/discussion/steveperkins/should_you_use_spring_boot_in_your_next_project/ https://github.com/spring-projects/spring-boot/issues/3350 https://blog.cloudflare.com/tools-for-debugging-testing-and-using-http-2/ http://unrestful.io/2015/08/28/wiretap.html