Does spring boot provides an implementation of 'chain of responsibility pattern'.
Something like the pipeline (request pipeline or a commerce pipeline ) .Where we can have the components involved added or removed based on configuration changes.
Does spring boot provides an implementation of 'chain of responsibility pattern'.
Something like the pipeline (request pipeline or a commerce pipeline ) .Where we can have the components involved added or removed based on configuration changes.
It does not seem to me that Spring provides a generic implementation of the pattern.
There are specific components in Spring that work like chain of responsibility pattern, however. One example that comes to mind is the interceptor in Spring MVC. Each interceptor inspects and/or enriches the request before passing to the next one until the controller. Please note that there are differences between the two patterns.