-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
Enable/Disable CORS revisited [SPR-17598] #22130
Comments
Brian Clozel commented Could you elaborate on why overriding the cors processor is not enough? Could you provide a concise sample that shows that? I'm not sure Spring MVC is the best choice for building a gateway; as you can see, the annotation model is less explicit and delegates the route matching to the engine, so you're not in full control of that part. The same thing will apply for content-negotiation, decoding the request body and error handling. It looks like you're spending more time undoing the web support in Spring MVC than building your own app. Have you considered using Spring WebFlux.fn or Spring Cloud Gateway? |
ayush-finix commented I'll get a github example as soon as I can, but in the meanwhile, I'll try and explain it. If CorsUtil.isPreflight request returns true, then overriding just the cors processor isn't good enough (in my case) for only two reasons (that I've run into so far).
@RequestMapping(path = "/**")
public asdf(HttpServletRequest request) {
if (request.getMethod().equals("OPTIONS")) {...} Spring WebFlux.fn seems like a better solution, but there don't seem to be many issues to get this working as a fairly simple mvc project, and I'm just working with what exists in our code base. From a cursory reading, everything in webflux looks almost fairly identical to an mvc app? I'm not sure about the other points you mention. Content negotiation and decoding stay as is while errors mostly map to 407 or 502s or just pass back whatever the target server responds with (which from this server's perspective is a success).
|
For a proxy, you likely don't need the richness of mapping options for annotated controller methods. A simple For pre-flight requests, those are handled through a |
ayush-finix opened SPR-17598 and commented
Similar issue to #18266, however, disabling the cors processor doesn't work well enough.
We're building a proxy server where even the options requests should just be forwarded to the upstream, and the cors settings are somewhat interfering with this since there's CorsUtils.isPreflightRequest calls peppered around in various place (mostly referenced in the above ticket).
A few things I'd like to bring up:
After overriding RequestMappingHandlerMapping like
in X extends WebMvcConfigurationSupport
Disabling the cors processor and setting spring.mvc.dispatch-options-request=true still resolves a controller like the below to method 2
because the default RequestMethodsRequestCondition still checks preflight requests
https://github.com/spring-projects/spring-framework/blob/v5.1.2.RELEASE/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/condition/RequestMethodsRequestCondition.java#L108
Aside: Why are all the condition classes final?
There's seems to be a lot of hoops to jump through to just make any OPTIONS call (with Origin header for example) resolve to something like method1, and it's really unfortunate that there's no sane way to override the CorsUtils methods or just disable the feature entirely. Sorry if this isn't the right place to discuss this, and please let me know if there's any more information necessary.
Affects: 5.1.2, 5.1.3
Issue Links:
The text was updated successfully, but these errors were encountered: