You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While implementing #32613, I noticed that SpEL currently does not support compilation of expressions that provide an Integer value when indexing into an array or list.
Standard evaluation of such operations works fine, but when we attempt to compile the expression into bytecode, that fails because an Integer cannot be automatically unboxed to an int.
Examples
In both of the following tests, the last invocation of SpelCompiler.compile(...) fails with java.lang.VerifyError: Bad type on operand stack because #index (an Integer) cannot be auto-unboxed in bytecode.
Prior to this commit, the Spring Expression Language (SpEL) failed to
compile an expression that indexed into any array or list using an
Integer.
This commit adds support for compilation of such expressions by
ensuring that an Integer is unboxed into an int in the compiled
bytecode.
See gh-32694Closesgh-32908
Prior to this commit, the Spring Expression Language (SpEL) failed to
compile an expression that indexed into an array or list using an
Integer.
This commit adds support for compilation of such expressions by
ensuring that an Integer is unboxed into an int in the compiled
bytecode.
See gh-32694Closesgh-32908
(cherry picked from commit cda577d)
Prior to this commit, the Spring Expression Language (SpEL) failed to
compile an expression that indexed into an array or list using an
Integer.
This commit adds support for compilation of such expressions by
ensuring that an Integer is unboxed into an int in the compiled
bytecode.
See gh-32694Closesgh-32908
(cherry picked from commit 079d53c)
sbrannen
changed the title
Support compilation of array and list indexing with Integer in SpEL
SpEL compilation fails when indexing into an array or list with an IntegerMay 28, 2024
Overview
While implementing #32613, I noticed that SpEL currently does not support compilation of expressions that provide an
Integer
value when indexing into an array or list.Standard evaluation of such operations works fine, but when we attempt to compile the expression into bytecode, that fails because an
Integer
cannot be automatically unboxed to anint
.Examples
In both of the following tests, the last invocation of
SpelCompiler.compile(...)
fails withjava.lang.VerifyError: Bad type on operand stack
because#index
(anInteger
) cannot be auto-unboxed in bytecode.Related Issues
CompilableIndexAccessor
SPI in SpEL #32613The text was updated successfully, but these errors were encountered: