赞
踩
xml文件有三种创建bean的方式,分别是:
1、构造函数
2、静态工厂方法
3、实例工厂方法
<!-- 创建bean的三种方式 -->
<!-- 第一种方式构造函数创建
在spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他属性和标签
-->
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>
<bean id="accountDao" class="com.i
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。