-
Notifications
You must be signed in to change notification settings - Fork 41.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a dedicated annotation to register filters and servlets #16500
Comments
Having a dedicated annotation just to disable the bean wouldn't be great, but I quite like the idea of offering all the @OrangeDog how many filters are you typically registering in your application? I'm trying to think about how we balance the amount of boilerplate needed with |
Right now just configuring I'm likely to add a couple more security filters at some point for additional authentication methods, e.g. persistent API tokens. |
I've also faced this situation in a few projects, most of the times in the very same scenario as @OrangeDog's:
Having |
We have a messy dependencies, so filters by automatically registery is a risk for us, because it's not under control with filter list (they are register to application context already). So we skipped all of subclasses for Is there a better way to resolve this? |
I've run on this issue today, after 4 hrs of research. Honestly, I spent some time on thinking about designed solution (instead of those hacks with disabled FilterRegistrationBean that you have to unwrap in place where the filter is needed) and I came to following conculsion: Implementors of Why? Well, since we have a Yes, I know that is a breaking change, but since Spring Boot 3.0 is coming maybe it is a good moment for such change? |
Ok so it's been 10 years since this was brought up, and 5 years on discussing an annotation to take the place of FilterRegistrationBean. I need to add some web filters to the normal web filters chain, and I need to add other security filters to Spring Security's chain. These are rather mundane exercises, but under the current status quo it's very very difficult when all Filters are automatically registered, Autoconfiguration, order issues, etc. The current workaround is a verbose hack where the solution should be as easy as just setting up an array of objects. I do think direct configuration of the jakarta web filter chain would make things much simpler. Annotations to control the enablement of filters would be a modest improvement, but the problem is you can't see what the chain order is in one place with annotations. So while order can be controlled now, it's hard to see the full chain all at once with annotations. And, annotations are for the filter authors, not users, so if you are installing filters from dependencies you may not have the luxury of declaring annotations. The Spring Security Chain configures that chain directly from one method. I think a similar configuration would be easier to handle setting up the web filter chain when you need to control it. If a method could be added in a Something like this:
The default configuration might be the following and it would do the same thing that happens today:
I think it's time to make a decision on this, and address it because it's a real mess right now. |
We're going to add @Configuration(proxyBeanMethods = false)
static class FilterConfigurationWithAnnotation {
@Bean
@FilterRegistration(enabled = false, name = "test", order = 1, asyncSupported = false,
dispatcherTypes = DispatcherType.ERROR, matchAfter = true, servletNames = "test",
urlPatterns = "/test/*")
TestFilter testFilter() {
return new TestFilter();
}
} |
@mhalbritter would an |
Yes, that should be possible. However, I have to check (and document) which takes precedence. |
Sometimes you want to declare
Filter
s as@Beans
in order to have them managed and dependencies injected etc. but do not want them to be automatically registered.This can be a problem particularly when working with Spring Security. Though this will apply in any situation with multiple filter chains.
Currently you have to declare a
FilterRegistrationBean
for every filter withsetEnabled(false)
, which can get very tedious and can be a maintenance problem.I propose a new annotation-based method to exempt filter beans from autoregistration. For maximum utility, perhaps by implementing
FilterRegistrationBean
(or justRegistrationBean
) wholly as an annotation?Related: #2173
The text was updated successfully, but these errors were encountered: