-
Book Overview & Buying
-
Table Of Contents
Java Web Internals
By :
In this chapter, we began a new and important stage in our web development journey. After building, understanding, and expanding our own educational Application Server, we now move on to designing a custom web framework. We explored the central role of frameworks in abstracting technical infrastructure, saw how tools like Spring and Quarkus have transformed the way we develop applications, and delved into the architecture of our simpleWebFramework, analyzing everything from the use of embedded Tomcat to the annotation-based metadata extraction module.
But this construction is just beginning. In the next chapters, we'll explore in detail each of the cogs that will power our framework. We'll see how Tomcat is initialized directly from code, how the DispatcherServlet will be structured to control the entire request-response cycle, and how the metadata extraction module will be developed based on the @SimpleController, @SimpleGetRequest, @SimplePostRequest, @SimpleInject...