首页 > 编程语言 > 详细

Spring 基础

时间:2018-08-14 00:51:17      阅读:240      评论:0      收藏:0      [点我收藏+]

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 基础

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

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