码迷,mamicode.com
首页 > 编程语言 > 详细

Spring 基础

时间:2018-08-14 00:54:36      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ring   print   获取   创建   ext   输出   string   getbean   get   

Helloworld.class

public class Helloworld {
        private String name;

    public void setName(String name) {
        System.out.println("setName:"+name);
        this.name = name;
    }

    public void  hello(){
        System.out.println("hello:"+name);
    }
}

输出

    public static void main(String[] args) {
//        Helloworld helloworld = new Helloworld();
//        helloworld.setName("tangsan");
//        helloworld.hello();

        //1.创建Spring的IOC容器对象
        ApplicationContext context =
                new ClassPathXmlApplicationContext("applicationContext.xml");
        //2.从IOC获取 Bean 实例
        Helloworld hello = (Helloworld)context.getBean("helloWorld");
         hello.hello();
    }

Spring 基础

标签:ring   print   获取   创建   ext   输出   string   getbean   get   

原文地址:https://www.cnblogs.com/tangge/p/9471911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!