-
Notifications
You must be signed in to change notification settings - Fork 38.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support letters other than A-Z in identifiers in SpEL
Prior to this commit, only the letters 'A' - 'Z' (ignoring case) were supported in identifiers (i.e., property, field, and variable names). This known (yet undocumented) limitation prevented the use of characters such as 'ü', 'ñ', 'é' as well as letters from other character sets such as Chinese, Japanese, Cyrillic, etc. This commit lifts that restriction by delegating to Character.isLetter() to determine if a character in a SpEL expression is a letter. Closes gh-30580
- Loading branch information
Showing
2 changed files
with
16 additions
and
30 deletions.
There are no files selected for viewing
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
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