-
Book Overview & Buying
-
Table Of Contents
Java Web Internals
By :
In the previous chapters, we have covered a long journey of evolution for our web server: we started from communication via sockets and the direct manipulation of HTTP requests, created the SimpleWebServer, evolved to the SimpleWebContainer, and finally understood the architecture of modern frameworks, such as Spring Boot and Quarkus.
These frameworks brought to the Java ecosystem the ability to abstract all the infrastructure of a server, automating processes such as routing, dependency injection, and data serialization. However, understanding each layer of this process is what truly transforms the programmer into a complete developer – capable of building or extending any Java web application consciously.
From this point on, we move from the building stage to the utilization of our own framework: SimpleWebFramework. We will create a full application using SimpleWebFramework as our communication infrastructure.
It represents...