java - Passing values to spring bean programmatically? -


मेरे पास वसंत सेम नीचे है।

  सार्वजनिक वर्ग कर्मचारी 2 {निजी इंट आईडी; निजी स्ट्रिंग का नाम; निजी डबल वेतन; सार्वजनिक कर्मचारी 2 (इंट आईडी, स्ट्रिंग का नाम, डबल वेतन) {this.id = id; This.name = name; इस.salary = वेतन;   

अब मैं स्प्रिंग कॉन्फ़िगरेशन फ़ाइल में कॉन्फ़िग के नीचे है।

  & lt; bean id = "emp2 "वर्ग =" com.basic.Employee2 "& gt; & Lt; constructor-arg नाम = "id" मान = "" / & gt; & Lt; constructor-arg नाम = "नाम" मान = "" / & gt; & Lt; कन्स्ट्रक्टर- आर्ग नाम = "वेतन" मान = "" / & gt; & Lt; / सेम ​​& gt;   

अब मैं गतिशील कोड के बाद से ऊपर के मानों को नहीं मान सकता।

अब मैं स्प्रिंग बीन प्रोग्रामेटिक रूप से नीचे कोड का उपयोग कर रहा हूं।

  कर्मचारी 2 एएमपी = (कर्मचारी 2) applicationContext.getBean ("emp2");   

Div class = "post-text" itemprop = "text">

जब आप सेम लुकअप करते हैं

  कर्मचारी 2 emp = (कर्मचारी 2) applicationContext.getBean ("emp2")   

इस तरह से कुछ कोशिश: , "कुछ", "सोमनाम", "सोमेस्लारे");

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -