📄 springtool.java
字号:
/**
*******************************************************************************
* SpringTool.java
*
* (c) Copyright 2008 Hewlett-Packard Development Company, L.P.
*
*<Program Content>
* System Name : Students Management System
*<Summarize>
* The file includes a tool class.
*<Update Record>
* 2009-5-6 1.00 zhangliy
*******************************************************************************
*/
package com.hp.eds.zhangliyuan.stuMan.util;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import com.hp.eds.zhangliyuan.stuMan.service.interf.StudentServiceInt;
/**
* Summarize
*
* @author zhangliy
* @version 1.0
*/
public final class SpringTool {
/**
* get the bean
*
* @return XmlBeanFactory
*/
public static StudentServiceInt getBean() {
Resource resource = new ClassPathResource("applicationContext.xml");
XmlBeanFactory bean = new XmlBeanFactory(resource);
StudentServiceInt studentService=(StudentServiceInt)bean.getBean("studentService");
return studentService;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -