第一种:直接配置javabean文件
bean.xml
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[]{"beans.xml"});
personDao pe=(personDao)ctx.getBean("persondao");//通过配置javabean
}
bean.xml
springtest.java
personDao pe=(personDao)ctx.getBean("productCreator");
pe.test();
@note:红色部分必须使用static关键字定义
3.xml配置+factory类,使用实例工厂方法实例化
bean.xml
新闻热点
疑难解答