Exemplo n.º 1
0
  public static void main(String[] args) {
    ApplicationContext factory =
        new FileSystemXmlApplicationContext("/bin/sample3/applicationContext2.xml");

    MessageBean bean = (MessageBean) factory.getBean("messageBean");
    bean.sayHello();
  }
Exemplo n.º 2
0
  public static void main(String[] args) {

    ApplicationContext ctx = new ClassPathXmlApplicationContext("sample/beans.xml");
    MessageBean bean = (MessageBean) ctx.getBean("targetBean");
    bean.sayHello();
  }