My Sixth Java program Spring-bean

Source: Internet
Author: User

Configuration file Beans.xml

<?XML version= "1.0" encoding= "UTF-8"?>     <Beansxmlns= "Http://www.springframework.org/schema/beans"Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"xsi:schemalocation= "Http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">        <BeanID= "HelloWorld"class= "Com.importnew.HelloWorld">           < Propertyname= "message"value= "good"/>           < Propertyname= "XINGRONGCI"value= "Praise"/>       </Bean>                   </Beans>

Main program Mainapp.java

 Packagecom.importnew;ImportOrg.springframework.context.ApplicationContext;ImportOrg.springframework.context.support.ClassPathXmlApplicationContext; Public classMainapp { Public Static voidMain (string[] args) {ApplicationContext context=NewClasspathxmlapplicationcontext ("Beans.xml"); HelloWorld obj= (HelloWorld) context.getbean ("HelloWorld");                    Obj.printmessage (); }}

Helloworld.java

 Packagecom.importnew; Public classHelloWorld {PrivateString message; PrivateString XINGRONGCI;//Private      Public voidsetmessage (String message) { This. Message =message; }      PublicString getMessage () {return  This. Message; }        /**set an adjective as a property of this class **/     Public voidSETXINGRONGCI (String xingrongci) { This. XINGRONGCI =XINGRONGCI; }      PublicString getxingrongci () {return  This. Xingrongci; }          Public voidPrintmessage () {System.out.println ("Xiaoming" + message + "\ n"); SYSTEM.OUT.PRINTLN (Message+ "Xiao Wang" + "\ n"); SYSTEM.OUT.PRINTLN (Message+ "is an adjective" + "\ n"); System.out.println ("Say someone" + message + "may be" +xingrongci+ "means" + "\ n"); SYSTEM.OUT.PRINTLN (Message+ "Xiao Wang and Xiao Ming" + "\ n"); }}

Effect

My Sixth Java program Spring-bean

Related Article

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.