⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 introductionmain.java

📁 是关于struts+hibernate+spring开发宝典的源代码,希望对大家有帮助,
💻 JAVA
字号:
package cn.hxex.springcore.introduction;

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class IntroductionMain {

	public static void main(String[] args) {

		ClassPathXmlApplicationContext factory = new ClassPathXmlApplicationContext( "cn/hxex/springcore/introduction/IntroductionBeans.xml" );
		
		IntroductionBean introductionBean = (IntroductionBean)factory.getBean( "introductionBean" );
		introductionBean.serviceMethod();
		
//		UsageTracked usageTracked = (UsageTracked)factory.getBean( "introductionBean" );
//		usageTracked.display();
	}

}

⌨️ 快捷键说明

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