spring
Lenguaje de Expresión de Primavera (SpEL)
Buscar..
Referencia de sintaxis
Puede usar @Value("#{expression}")
para inyectar valor en tiempo de ejecución, en el que la expression
es una expresión SpEL.
Expresiones literales
Los tipos admitidos incluyen cadenas, fechas, valores numéricos (int, real y hexadecimal), booleano y nulo.
"#{'Hello World'}" //strings
"#{3.1415926}" //numeric values (double)
"#{true}" //boolean
"#{null}" //null
Lista en linea
"#{1,2,3,4}" //list of number
"#{{'a','b'},{'x','y'}}" //list of list
Mapas en linea
"#{name:'Nikola',dob:'10-July-1856'}"
"#{name:{first:'Nikola',last:'Tesla'},dob:{day:10,month:'July',year:1856}}" //map of maps
Métodos de invocación
"#{'abc'.length()}" //evaluates to 3
"#{f('hello')}" //f is a method in the class to which this expression belongs, it has a string parameter
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow