Implicit variable resolution is broken in JSP EvalTag
#33942
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
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 theresolveImplicitVariable
method the arguments for theELResolver#getValue
call are in the wrong order, thus causing the resolveImplicitVariable to always return null.The signature for the method is:
So I suppose the
name
parameter passed toresolveImplicitVariable
should correspond to theproperty
, not thebase
?I could also try to provide a PR for this
The text was updated successfully, but these errors were encountered: