springtest.java

来自「Spring2.0宝典」· Java 代码 · 共 35 行

JAVA
35
字号
/*******************************************************************
<br>Copyright (C), 2004-2006, yeeku.H.Lee
<br>Program Name:SpringTest.java
<br>Author:yeeku.H.lee kongyeeku@163.com
<br>Version:1.0
<br>This program is protected by copyright laws.
<br>Date: 2005-9-27
*******************************************************************/

package lee;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

public class SpringTest {

    public final static String CHINESE = "Chinese";

    public final static String AMERICAN = "American";

 

    public static void main(String[] args)
    {
        ApplicationContext ctx = new FileSystemXmlApplicationContext("bean.xml");
        System.out.println("============");

        Human human = null;
        Person p = (Person) ctx.getBean("chinese");
		p.test();
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?