I’ve got a simple OncePerRequestFilter with a couple of init-param entries defined in my web.xml, but I don’t know how to access them from within the filter. getFilterConfig() returns null. The init(FilterConfig) docs make it sound like it will do injection into bean properties based on the name of the init-param, e.g., a param named foo will have its value injected into a property on the filter named foo, but some logging in doFilterInternal seems to indicate that isn’t happening.
Since I’m fairly new to modern Spring (last used it circa the 1.x days) and totally new to Spring MVC, I’m pretty sure I’ve just missed something obvious, but I can’t see what it is. Thanks for any help.
The
init-paramvalues are mapped to properties of the filter it’s self.