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

Implicit variable resolution is broken in JSP EvalTag #33942

Closed
micopiira opened this issue Nov 22, 2024 · 1 comment
Closed

Implicit variable resolution is broken in JSP EvalTag #33942

micopiira opened this issue Nov 22, 2024 · 1 comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: superseded An issue that has been superseded by another type: regression A bug that is also a regression

Comments

@micopiira
Copy link
Contributor

micopiira commented Nov 22, 2024

After upgrading to Spring Boot 3.4.0 (So Spring Framework 6.2.0) I noticed that for example, the following code on a JSP page throws an error: <spring:eval expression="pageContext.toString()"/> , while the same code does work on previous Spring Framework versions, for example 6.1.15.

After digging into the EvalTag code, I noticed that in the resolveImplicitVariable method the arguments for the ELResolver#getValue call are in the wrong order, thus causing the resolveImplicitVariable to always return null.

The signature for the method is:

public abstract Object getValue(ELContext context, Object base, Object property);

So I suppose the name parameter passed to resolveImplicitVariable should correspond to the property, not the base?

I could also try to provide a PR for this

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Nov 22, 2024
@micopiira micopiira changed the title EvalTag resolveImplicitVariable does not work EvalTag implicit variables resolving broken Nov 28, 2024
@sbrannen sbrannen added in: web Issues in web modules (web, webmvc, webflux, websocket) type: regression A bug that is also a regression status: superseded An issue that has been superseded by another and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Dec 14, 2024
@sbrannen
Copy link
Member

Thanks for bringing this to our attention. 👍

Closing as:

@sbrannen sbrannen closed this as not planned Won't fix, can't repro, duplicate, stale Dec 14, 2024
@sbrannen sbrannen changed the title EvalTag implicit variables resolving broken Implicit variable resolution is broken in JSP EvalTag Dec 14, 2024
sbrannen pushed a commit that referenced this issue Dec 14, 2024
Prior to this commit, the order of parameters passed to
ELResolver#getValue was incorrect.

The `name` should correspond to the `property` parameter of the
`getValue` method instead the `base` parameter.

See gh-32383
See gh-33942
Closes gh-33945
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) status: superseded An issue that has been superseded by another type: regression A bug that is also a regression
Projects
None yet
Development

No branches or pull requests

3 participants