Support compilation of array and list indexing with Integer in SpEL
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-32694
Closes gh-32908
@ -671,6 +671,32 @@ public class SpelCompilationCoverageTests extends AbstractExpressionTests {
@@ -671,6 +671,32 @@ public class SpelCompilationCoverageTests extends AbstractExpressionTests {