Zoeken…


Syntaxisreferentie

U kunt @Value("#{expression}") gebruiken om tijdens runtime waarde te injecteren, waarbij de expression een SpEL-expressie is.

Letterlijke uitdrukkingen

Ondersteunde typen zijn tekenreeksen, datums, numerieke waarden (int, real en hex), boolean en null.

"#{'Hello World'}"  //strings
"#{3.1415926}"      //numeric values (double)
"#{true}"           //boolean
"#{null}"           //null

Inline lijst

"#{1,2,3,4}"              //list of number
"#{{'a','b'},{'x','y'}}"  //list of list

Inline kaarten

"#{name:'Nikola',dob:'10-July-1856'}" 
"#{name:{first:'Nikola',last:'Tesla'},dob:{day:10,month:'July',year:1856}}" //map of maps

Methoden aanroepen

"#{'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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow