Avatar
0
anaconda875 Beginner
anaconda875 Beginner
Spring weblux how to share data from Controller to Filter using Context
In controller I need to share some data to WebFilter (I don't want to use ServerWebExchange.getAttributes().put("KEY", "VALUE") , and my boss either), this is my current implemetation: <code><span>@Component</span> <span>public</span> <span>class</span> <span>RequestFilter</span> <span>implements</span> ...
Answer