Skip to content

Tag: spring

How to set a list as an Enum constant argument?

How do I pass a List type value in the constant parameter? In this case, this parameter is only for the PARS() constant. Update: I ended up not mentioning it in the post but it’s a list of object and not a string. Answer Enums are objects instantiated from a class, like other objects and classes. So if …

Spring Boot. Forward on RestController

I am implementing a mechanism for replacing short links. I need to forwarded request to another controller. I found examples how to do it in spring on models, but I don’t understand how to do it in RestControllers Example what i found (use models) Or maybe I’m looking in the wrong direction and I …

Order between @ControllerAdvice and custom Aspect

tl;dr How can I define the order of custom aspects and the @ControllerAdvice? Detailed description I want to decorate various methods (like normal REST-Calls or a @JmsListener) with MDC information on controller-level. The idea is: I, as a developer, don’t have to think about the MDC data in my controll…