What is a canonical way to check if the String is null or empty using SpEL?
I would like to achieve the same result as Strings.isNullOrEmpty(myString) from Guava does.
My candidates:
"#myString.?length=0""#myString = ''"
Not sure if any is canonical, and the documentation is pretty vague (https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#expressions-operators)