-
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
Regression: ResourceUrlEncodingFilter can throw StringIndexOutOfBoundsException with relative URL [SPR-13847] #18420
Comments
Dallas Hopewell commented Attaching a unit test that exhibits the issue in case this helps. |
Brian Clozel commented Hi Dallas, Don't hesitate to comment with more feedback / confirm that this fix is working for you. |
Ravish Bhagdev commented I'm getting a similar issue on 4.3.13 as well:
It seems like the relative paths to PNG files within my CSS are being processed incorrectly. Prefix and suffix generated in ResourceUrlProvider.java on line number 183 and 184 and then incorrect: Suffix index is often > prefix index. Causing above exception. Here is my configuration: VersionResourceResolver versionResourceResolver = new VersionResourceResolver()
.addVersionStrategy(new ContentVersionStrategy(), "/**");
registry.addResourceHandler("/js/**", "/css/**", "/images/**", "/favicon.ico")
.addResourceLocations(
"classpath:static/js/", "static/js/",
"classpath:static/css/", "static/css/",
"classpath:static/images/", "static/images/"
)
.setCachePeriod(CACHE_PERIOD)
.resourceChain(true)
.addResolver(versionResourceResolver); Works fine if I remove versionResourceResolver from above resource handler registry. Can someone please 1) Confirm this is an issue in 4.3.13 and 2) Which version has the fix applied? It is mentioned that 4.3 RC1 has the fix so I am confused by this. |
Brian Clozel commented Ravish Bhagdev Yes, it is supposed to be fixed in 4.3.13. Thanks! |
Ravish Bhagdev commented Thanks for a prompt response The CSS I'm having problems with loads fine on all our 5 web services but one. It fails on the one which has a relatively longer context path. The application is quite big and works on dockerised environment, brining in a lot of vendor scripts. So creating exact scenario in a small project will be some effort. I may get around to this when I have more time. |
Ravish Bhagdev commented I've raised a separate issue for ResourceUrlProvider anyway here: |
Dallas Hopewell opened SPR-13847 and commented
I have a web application that is throwing the following exception after updating from Spring Framework version 4.1.7 to 4.2.4
The part of the JSP where the error occurs is: -
The problem seems to be when the javax.servlet.http.HttpServletResponseWrapper#encodeURL(String) method is invoked with a 'relative' URL path including a query string, and that query string index in the URL path is less than the number of characters in the web application's context path then the exception is thrown.
Affects: 4.2.4
Attachments:
Issue Links:
The text was updated successfully, but these errors were encountered: