首页 > 编程语言 > 详细

Spring的配置

时间:2014-09-25 19:51:38      阅读:259      评论:0      收藏:0      [点我收藏+]

 

1、

 1 package com.helen.bean;
 2 
 3 public class Student {
 4     private int stuid;
 5     private String name;
 6     private String mess;
 7 
 8     public int getStuid() {
 9         return stuid;
10     }
11 
12     public void setStuid(int stuid) {
13         this.stuid = stuid;
14     }
15 
16     public String getName() {
17         return name;
18     }
19 
20     public void setName(String name) {
21         this.name = name;
22     }
23 
24     public String getMess() {
25         return mess;
26     }
27 
28     public void setMess(String mess) {
29         this.mess = mess;
30     }
31 
32     @Override
33     public String toString() {
34         return "Student [stuid=" + stuid + ", name=" + name + ", mess=" + mess
35                 + "]";
36     }
37 
38 }

beans.xml:

<bean id="stu" class="com.helen.bean.Student" scope="prototype">
        <property name="mess" value="Hello World!!!" />
    </bean>

 

Test.java:

 1 package com.helen.bean;
 2 
 3 
 4 
 5 import org.springframework.context.ApplicationContext;
 6 import org.springframework.context.support.ClassPathXmlApplicationContext;
 7 
 8 public class Test {
 9 
10     public static void main(String[] args) {
11     
12         ApplicationContext   context = new ClassPathXmlApplicationContext("Beans.xml");
13         Student stu=(Student)context.getBean("stu");
14         Student stu1=(Student)context.getBean("stu");
15         System.out.println("stu==stu1:"+(stu==stu1));
16         stu.setName("helen");
17         stu.setStuid(15);
18         System.out.println("Infor:"+stu.getStuid()+" "+stu.getName()+" "+stu.getMess());
19 }
20 }

 

stu==stu1:true
Infor:15 helen Hello World!!!

 

Spring的配置

原文:http://www.cnblogs.com/thrive/p/3993457.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!