Java代码
一.import org.springframework.beans.factory.BeanFactory;
2.
三.import org.springframework.beans.factory.xml.XmlBeanFactory;
4.
五.import org.springframework.core.io.ClassPathResource;
6.
七.public class GreetingMain {
8.
9. public static void main(String[] args) {
10.
11. //加载配置文件
12.
13. ClassPathResource resource = new ClassPathResource("ioc/iocSample/beans.xml");
14.
15. //依据配置文件结构BeanFactory对象
16.
17. BeanFactory factory = new XmlBeanFactory(resource);
18.
19. //获得提供具体业务逻辑的Java Bean
20.
21. Action action = (Action)factory.getBean("greet");
22.
23. //调用Java Bean中的具体方法
24.
25. action.greet();
26.
27. }
28.
29.}
本文来源:
我的异常网
Java Exception
Dotnet Exception
Oracle Exception
- 1975 - Struts 的Action方法中如何定义和抛出自定义异常
- 1976 - thinking in java异常一问
- 1977 - Exception in thread AWT-EventQueue-0 java.lang.IndexOutOfBoundsException: Index: 5
- 1978 - Server 对象 错误 ASP 0177 : 800401f3
- 1979 - Server.CreateObject 失败
- 1980 - 未在本地计算机上注册Microsoft.Jet.OLE DB.4.0提供程序
- 1981 - Sys.WebForms.PageRequestManagerTimeoutException:The Server request tiemd out
- 1982 - 怎樣用javascript的alert拋出詳細異常ex.Message
- 1983 - java.lang.ArrayIndexOutOfBoundsException: -1
- 1984 - 数组越界
- 1985 - error starting tomcat 5 server
- 1986 - System.InvalidOperationException: ConnectionString 属性尚未初始化
- 1987 - 常量中有换行符的错误
- 1988 - oracle即能存储中文又能存储日文设置
- 1989 - 动态SQL怎样创建用户
- 1990 - SSH整合项目中容易出现的错误集整理
- 1991 - ORA-00936: missing expression
- 1992 - 带参数存储过程怎么测试
- 1993 - SQL语句优化
- 1994 - oralce怎么查看用户名密码
- 1995 - oracle中类似SQL server 中的GO命令是什么
- 1996 - unreported exception java.lang.Throwable
- 1997 - java.sql.SQLException: User not found: SA
- 1998 - 捕获Exception和捕获特定的异常
- 1999 - ActionErrors里的ADD的用法