#http
Read more stories on Hashnode
Articles with this tag
Spring Interceptors are a powerful feature in the Spring framework, allowing developers to manipulate HTTP requests and responses before they reach the controller or after they leave it. They are an essential tool for handling cross-cutting conce...
When you type a URL into your browser, a complex series of events is set in motion, ultimately delivering the website you want to see. It might seem like magic, but it's a finely orchestrated dance of technology. Understanding how this process wo...
In today’s digital age, APIs (Application Programming Interfaces) play a pivotal role in enabling communication between different software applications. Two of the most common API protocols are SOAP (Simple Object Access Protocol) and REST (Repre...
In this article, we'll explore the core component of the Spring MVC framework: DispatcherServlet. By the end, you'll have a clear understanding of what DispatcherServlet is, how it works, and how to configure it in your Spring applications. We’ll...
Cross-Origin Resource Sharing (CORS) is a crucial aspect of web security that controls how resources on a web server can be accessed from another domain. In Spring Security 6, configuring CORS ensures that your application interacts securely with...
When working with APIs, understanding the differences between PUT and PATCH methods is crucial for effective data manipulation. Both methods are used for updating resources, but they serve different purposes and have distinct characteristics. In ...