博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
factory工厂的创建
阅读量:6519 次
发布时间:2019-06-24

本文共 594 字,大约阅读时间需要 1 分钟。

package test;import org.springframework.beans.factory.BeanFactory;import org.springframework.context.support.ClassPathXmlApplicationContext;import entity.Student;public class Test {	public static void main(String[] args) {		// TODO Auto-generated method stub		BeanFactory factory = new 				ClassPathXmlApplicationContext("classpath:beans.xml");		Student s =factory.getBean("student",Student.class);		s.showInfo();		System.out.println(s);				Student s2 =factory.getBean("student",Student.class);		s2.showInfo();		System.out.println(s2);					}}

  

转载于:https://www.cnblogs.com/jl-12/p/9686841.html

你可能感兴趣的文章
注入点判断
查看>>
udev
查看>>
ubutun安装jdk和设置环境变量
查看>>
shell笔记2 tput
查看>>
rsync 与 inotify 实现双机实时同步
查看>>
位运算技巧
查看>>
pl/sql 提醒乱码问题
查看>>
windows10和ubuntu16.04双系统下时间不对的问题
查看>>
VTP中VLAN配置信息不同步故障排除
查看>>
mongo主库地址变更,从库修改数据源IP
查看>>
LVM卷管理及配额设置
查看>>
怎样检查Linux服务器是否被***
查看>>
七周一次课(5月4日)
查看>>
linux下开源监控软件
查看>>
time函数
查看>>
我的友情链接
查看>>
mysql高可用mha
查看>>
php生成随机密码的几种方法
查看>>
记几处原生JS的开发
查看>>
Linux之父Linus说:并行计算基本上就是浪费大家的时间
查看>>