Spring Tutorial VII Spring injection list

Source: Internet
Author: User

1, the main configuration modification is two points, one is the XML configuration file, the other is the bean injection.

       <bean id= "Jack" class= "Com.test.pro.Singer" >      <property name= "Language" >      <list>      < value> English </value>      <value> Chinese </value>      <value> Japanese </value>      </list >      </property>  </bean>

2. Bean class

Package Com.test.pro;import Java.util.list;public class Singer {private list<string> language;public list< String> GetLanguage () {return language;} public void SetLanguage (List<string> language) {this.language = language;} public void saying () {for (String s:language) {System.out.println ("I will language +" +s);}}

3. Test class

Package Com.test.pro;import Org.springframework.context.applicationcontext;import Org.springframework.context.support.classpathxmlapplicationcontext;public class Main {public static void Main (String [] args) {//TODO auto-generated method Stubapplicationcontext ctx=new classpathxmlapplicationcontext ("Spring.xml"); Singer singer= (Singer) Ctx.getbean ("Jack"); Singer.saying ();}}


Output results



To summarize, injecting complex key points is actually the value of the XML config file property.

Spring Tutorial VII Spring injection list

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.