Browse Source
If the resulting size of repeated text in a SpEL expression (using the repeat operator '*') would exceed MAX_REPEATED_TEXT_SIZE, we currently throw a SpelEvaluationException with the MAX_REPEATED_TEXT_SIZE_EXCEEDED message. However, if the calculation of the repeated text size results in integer overflow, our max size check fails to detect that, and String#repeat(int) throws a preemptive OutOfMemoryError from which the application immediately recovers. To improve diagnostics for users, this commit ensures that we consistently throw a SpelEvaluationException with the MAX_REPEATED_TEXT_SIZE_EXCEEDED message when integer overflow occurs. Closes gh-31341pull/31346/head
2 changed files with 8 additions and 1 deletions
Loading…
Reference in new issue