首页 > 学院 > 开发设计 > 正文

获得Spring Bean

2019-11-18 16:08:53
字体:
来源:转载
供稿:网友
/////////////////////////////////////////////////////////////////////////////////////
"-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

    "fooBean" class="AutoBean"/>
    "barBean" class="AutoBean"/>



/////////////////////////////////////////////////////////////////////////////////////
public class AutoBean {

    public void foo() {
        System.out.println("foo()");
    }
}



/////////////////////////////////////////////////////////////////////////////////////
import org.springframework.context.applicationContext;
import org.springframework.context.support.FileSystemxmlApplicationContext;

public class BeanNameExample {    public static void main(String[] args) {
        ApplicationContext ctx = new FileSystemXmlApplicationContext(
        "build/bnapc.xml");
        AutoBean fooBean = (AutoBean)ctx.getBean("fooBean");
        AutoBean barBean = (AutoBean)ctx.getBean("barBean");
        fooBean.foo();
        barBean.foo();
    }
}

(出处:http://www.VeVb.com)



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表