语法参考

你可以使用 @Value("#{expression}") 在运行时注入值,其中 expression 是 SpEL 表达式。

文字表达

支持的类型包括字符串,日期,数值(int,real 和 hex),boolean 和 null。

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

内联列表

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

内联地图

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

调用方法

"#{'abc'.length()}"      //evaluates to 3
"#{f('hello')}"   //f is a method in the class to which this expression belongs, it has a string parameter