Skip to content
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

ResourceUrlEncodingFilter cache misses are expensive #34014

Open
dsyer opened this issue Dec 3, 2024 · 2 comments
Open

ResourceUrlEncodingFilter cache misses are expensive #34014

dsyer opened this issue Dec 3, 2024 · 2 comments
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: enhancement A general enhancement

Comments

@dsyer
Copy link
Member

dsyer commented Dec 3, 2024

A PetClinic user noticed this (spring-projects/spring-petclinic#1732). For me it's a 2x throughput degradation on the home page of PetClinic, for the user that reported the issue it was 4x. The problem seems to be that ResourceUrlEncodingFilter has a CachingResourceResolver in it that works great for actual classpath resources. Conversely, links that are not static resources are cache misses, and they have to be checked every time in case they are, after all, on the classpath (e.g. links to other pages in the app).

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Dec 3, 2024
@bclozel bclozel added the in: web Issues in web modules (web, webmvc, webflux, websocket) label Dec 3, 2024
@bclozel bclozel self-assigned this Dec 10, 2024
@bclozel bclozel removed their assignment Feb 7, 2025
@bclozel bclozel added type: enhancement A general enhancement and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Feb 7, 2025
@bclozel bclozel added this to the General Backlog milestone Feb 7, 2025
@bclozel bclozel marked this as a duplicate of #34531 Mar 3, 2025
@maio
Copy link

maio commented Mar 12, 2025

Hello,

we also encountered this issue in our backoffice app which uses webjars-locator-lite, and displays tables with few hundreds of rows where each has multiple actions for which links get generated in Thymeleaf using <a href="@{/an/app/path/..}"> syntax. I would expect zero performance impact as these links have nothing to do with webjars, but instead we see a lot of CPU time being spent in LiteWebJarsResourceResolver.

To be precise time is being spent in org.springframework.web.servlet.resource.LiteWebJarsResourceResolver#resolveUrlPathInternal

Image

99% of this 7 plus seconds were spent in following methods (stacktrace):

org.springframework.web.servlet.resource.LiteWebJarsResourceResolver#resolveUrlPathInternal
org.springframework.web.servlet.resource.DefaultResourceResolverChain#resolveUrlPath
org.springframework.web.servlet.resource.AbstractResourceResolver#resolveUrlPath
org.springframework.web.servlet.resource.PathResourceResolver#resolveUrlPathInternal
org.springframework.web.servlet.resource.PathResourceResolver#getResource(java.lang.String, jakarta.servlet.http.HttpServletRequest, java.util.List<? extends org.springframework.core.io.Resource>)

BTW we are including webjars using HTML like this:

<link rel="stylesheet" th:href="@{/webjars/bootstrap/dist/css/bootstrap.css}">

So I would expect locator to do it's magic just for URLs which start with /webjars, but it seems to affect/process all the URLs which is problematic for any app that generates links to many unique URLs (e.g. link to transaction/user/whatever detail which contains ID).

@dsyer
Copy link
Member Author

dsyer commented Mar 12, 2025

The problem isn't the webjars locator per se though, it's a side effect of Spring Boot enabling a bunch of stuff including that. You might be able to workaround the issue by setting spring.web.resources.chain.cache=false.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

4 participants