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

SpEL compilation fails when indexing into an array or list with an Integer #32694

Closed
sbrannen opened this issue Apr 23, 2024 · 0 comments
Closed
Assignees
Labels
in: core Issues in core modules (aop, beans, core, context, expression) type: bug A general bug
Milestone

Comments

@sbrannen
Copy link
Member

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 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.

@Test
void indexIntoArray() {
	SpelExpressionParser parser = new SpelExpressionParser();
	StandardEvaluationContext context = new StandardEvaluationContext();
	context.setVariable("array", new int[] {1, 2, 3, 4});

	Expression expression = parser.parseExpression("#array[2]");
	assertThat(expression.getValue(context)).isEqualTo(3);
	assertThat(SpelCompiler.compile(expression)).isTrue();

	context.setVariable("index", 2);
	expression = parser.parseExpression("#array[#index]");
	assertThat(expression.getValue(context)).isEqualTo(3);
	assertThat(SpelCompiler.compile(expression)).isTrue();
}
@Test
void indexIntoList() {
	SpelExpressionParser parser = new SpelExpressionParser();
	StandardEvaluationContext context = new StandardEvaluationContext();
	context.setVariable("list", List.of(1, 2, 3, 4));

	Expression expression = parser.parseExpression("#list[2]");
	assertThat(expression.getValue(context)).isEqualTo(3);
	assertThat(SpelCompiler.compile(expression)).isTrue();

	context.setVariable("index", 2);
	expression = parser.parseExpression("#list[#index]");
	assertThat(expression.getValue(context)).isEqualTo(3);
	assertThat(SpelCompiler.compile(expression)).isTrue();
}

Related Issues

@sbrannen sbrannen added in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement labels Apr 23, 2024
@sbrannen sbrannen added this to the 6.2.0-M2 milestone Apr 23, 2024
@sbrannen sbrannen self-assigned this Apr 23, 2024
sbrannen added a commit that referenced this issue May 27, 2024
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
sbrannen added a commit that referenced this issue May 27, 2024
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-32694
Closes gh-32908

(cherry picked from commit cda577d)
sbrannen added a commit that referenced this issue May 27, 2024
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-32694
Closes gh-32908

(cherry picked from commit 079d53c)
@sbrannen 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 Integer May 28, 2024
@sbrannen sbrannen added type: bug A general bug and removed type: enhancement A general enhancement labels May 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: core Issues in core modules (aop, beans, core, context, expression) type: bug A general bug
Projects
None yet
Development

No branches or pull requests

1 participant