spring
Spring Expression Language (SpEL)
Sök…
Syntaxreferens
Du kan använda @Value("#{expression}")
att injicera värde vid körning, där expression
är ett SpEL-uttryck.
Bokstavliga uttryck
Typer som stöds inkluderar strängar, datum, numeriska värden (int, real och hex), booleska och noll.
"#{'Hello World'}" //strings
"#{3.1415926}" //numeric values (double)
"#{true}" //boolean
"#{null}" //null
Inline-lista
"#{1,2,3,4}" //list of number
"#{{'a','b'},{'x','y'}}" //list of list
Inline kartor
"#{name:'Nikola',dob:'10-July-1856'}"
"#{name:{first:'Nikola',last:'Tesla'},dob:{day:10,month:'July',year:1856}}" //map of maps
Åkalla metoder
"#{'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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow