खोज…


सिंटेक्स रेफरेंस

रनटाइम पर मूल्य इंजेक्ट करने के लिए आप @Value("#{expression}") का उपयोग कर सकते हैं, जिसमें expression एक स्पेल अभिव्यक्ति है।

शाब्दिक भाव

समर्थित प्रकारों में तार, दिनांक, संख्यात्मक मान (इंट, रियल और हेक्स), बूलियन और नल शामिल हैं।

"#{'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


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow