-
Notifications
You must be signed in to change notification settings - Fork 173
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
feat(SpEL): implement to configure the limit of characters for SpEL expressions #1193
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dbyron-sf
requested changes
Jun 26, 2024
...ssions/src/main/java/com/netflix/spinnaker/kork/expressions/config/ExpressionProperties.java
Outdated
Show resolved
Hide resolved
...ssions/src/main/java/com/netflix/spinnaker/kork/expressions/config/ExpressionProperties.java
Outdated
Show resolved
Hide resolved
dbyron-sf
reviewed
Jun 26, 2024
...ssions/src/main/java/com/netflix/spinnaker/kork/expressions/config/ExpressionProperties.java
Show resolved
Hide resolved
j-sandy
force-pushed
the
spel-expr-len
branch
2 times, most recently
from
July 1, 2024 14:55
442a30d
to
b7194b2
Compare
dbyron-sf
reviewed
Jul 1, 2024
...ssions/src/main/java/com/netflix/spinnaker/kork/expressions/config/ExpressionProperties.java
Outdated
Show resolved
Hide resolved
…xpressions Spring Expression Lanuage (SpEL) has a default limit of 10,000 characters. Springframework provides the feature to configure the limit. This feature allows to configure the limit of characters for SpEL expressions. Approach: In order to use an expression with characters more than the given default limit, require to follow either of the below approaches: 1. For Springframework >=5.3.28 and <6.1.3, by setting `maximumExpressionLength` field while instantiating the custom `SpelParserConfiguration` class. spring-projects/spring-framework#30380 spring-projects/spring-framework#30446 2. For Springframework >=6.1.3, by setting a JVM system property or Spring property named `spring.context.expression.maxLength` to the maximum expression length needed by your application. spring-projects/spring-framework#31952 spring-projects/spring-framework@7855986 Spinnaker supports spring boot 2.7.18, that brings springframework 5.3.31 [https://docs.spring.io/spring-boot/docs/2.7.18/reference/html/dependency-versions.html#appendix.dependency-versions.propertie9]. So first approach need to be implemented along with spinnaker enhancement to expose the `maximumExpressionLength` field.
dbyron-sf
approved these changes
Jul 1, 2024
@Mergifyio update |
✅ Branch has been successfully updated |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Spring Expression Lanuage (SpEL) has a default limit of 10,000 characters. Springframework provides the feature to configure the limit. This feature allows to configure the limit of characters for SpEL expressions.
Approach:
In order to use an expression with characters more than the given default limit, require to follow either of the below approaches:
maximumExpressionLength
field while instantiating the customSpelParserConfiguration
class.Make maximum SpEL expression length configurable spring-projects/spring-framework#30380
Make maximum SpEL expression length configurable spring-projects/spring-framework#30446
spring.context.expression.maxLength
to the maximum expression length needed by your application.Make maximum length of SpEL expressions in an
ApplicationContext
configurable spring-projects/spring-framework#31952spring-projects/spring-framework@7855986
Spinnaker supports spring boot 2.7.18, that brings springframework 5.3.31 [https://docs.spring.io/spring-boot/docs/2.7.18/reference/html/dependency-versions.html#appendix.dependency-versions.propertie9]. So first approach need to be implemented along with spinnaker enhancement to expose the
maximumExpressionLength
field.