maintest.java

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

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

package lee;

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


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

		Test t2 = (Test)ctx.getBean("test2");
		t2.insert("bbb");
		TransactionTest t1 = (TransactionTest)ctx.getBean("test1");
		t1.insert("xxx");
    }
}

⌨️ 快捷键说明

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