How to Elegantly Implement HTTP Logging?

How to Elegantly Implement HTTP Logging?

Click the blue text to follow us Recently, I encountered a requirement to implement HTTP logging myself. Adhering to the principle of not reinventing the wheel, I first consulted AI and found a framework called logbook. As an HTTP logging framework, logbook can fully capture the headers, parameters, and body of requests and responses. This … Read more

HttpServlet and HttpServletRequest Interface

HttpServlet and HttpServletRequest Interface

HttpServlet and HttpServletRequest Interface HTTP Protocol Overview of HttpServlet Overview of HttpRequest Interface Some Insights and Thoughts 1. HTTP Protocol What is HTTP? The HTTP protocol, short for Hyper Text Transfer Protocol, is a protocol used for transferring hypertext from a server (WWW: World Wide Web) to a local browser. The HTTP protocol operates on … Read more