HTTP Server Filters in a Jar
We discussed the HTTP Server ContextHandler in a Jar one of the methods was ContextHandlerInterface.getFilters() this method returns a list of Filters to apply to incoming HTTP Requests. We subclass…
Team to Create Outside the Box
We discussed the HTTP Server ContextHandler in a Jar one of the methods was ContextHandlerInterface.getFilters() this method returns a list of Filters to apply to incoming HTTP Requests. We subclass…
Today, I’m going to share with you a command handler for the HTTP Server I presented previously. This is a handler to extend the abilities of that HTTP Server in…
In the world of microservices, services need to find and communicate with each other dynamically. This is where the Java Spring Discovery Client comes in, offering a streamlined way to…
The landscape of AI is rapidly evolving, moving beyond simple request-response models to more sophisticated, agentic systems. These systems empower Large Language Models (LLMs) to not just generate text, but…
Last time I showed you how to create a basic HTTP Server that you can put into a JAR easily. Today I’m going to show you how to extend that…
As a software architect, I constantly look for patterns that enhance the scalability and maintainability of microservices. The Command Query Responsibility Segregation (CQRS) pattern is a powerful tool for this,…
In the world of software development, generating unique and meaningful keys is a common task. Whether it’s for identifying resources, creating URLs, or organizing data, having a robust key generation…