diff --git a/spring-context/src/main/java/org/springframework/context/expression/CachedExpressionEvaluator.java b/spring-context/src/main/java/org/springframework/context/expression/CachedExpressionEvaluator.java index 13a04440d54..c2d197a122e 100644 --- a/spring-context/src/main/java/org/springframework/context/expression/CachedExpressionEvaluator.java +++ b/spring-context/src/main/java/org/springframework/context/expression/CachedExpressionEvaluator.java @@ -75,7 +75,7 @@ public abstract class CachedExpressionEvaluator { /** * Return the {@link Expression} for the specified SpEL value - *
Parse the expression if it hasn't been already. + *
{@link #parseExpression(String) Parse the expression} if it hasn't been already. * @param cache the cache to use * @param elementKey the element on which the expression is defined * @param expression the expression to parse @@ -92,18 +92,20 @@ public abstract class CachedExpressionEvaluator { return expr; } - private ExpressionKey createKey(AnnotatedElementKey elementKey, String expression) { - return new ExpressionKey(elementKey, expression); - } - /** - * Parse the expression + * Parse the specified {@code expression}. * @param expression the expression to parse + * @since 5.3.13 */ protected Expression parseExpression(String expression) { return getParser().parseExpression(expression); } + private ExpressionKey createKey(AnnotatedElementKey elementKey, String expression) { + return new ExpressionKey(elementKey, expression); + } + + /** * An expression key. */ diff --git a/spring-context/src/test/java/org/springframework/context/expression/CachedExpressionEvaluatorTests.java b/spring-context/src/test/java/org/springframework/context/expression/CachedExpressionEvaluatorTests.java index f81a7945d73..1594137c041 100644 --- a/spring-context/src/test/java/org/springframework/context/expression/CachedExpressionEvaluatorTests.java +++ b/spring-context/src/test/java/org/springframework/context/expression/CachedExpressionEvaluatorTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2019 the original author or authors. + * Copyright 2002-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.