当前位置: 首页 > article >正文

Spring配置文件applicationContext.xml中bean>>property>>name属性的含义

Spring配置文件applicationContext.xml中bean>>property>>name属性表示的含义

首先我们知道property是bean元素的子元素,它用于调用Bean实例中的setter方法用于完成属性赋值,从而实现依赖注入。其name属性表示Bean实例中的相应属性,ref属性用于指定其属性值(就是你要连接的bean的id)

例子:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-4.3.xsd">
<bean id="userDao" class="com.itheima.userDaoImpl">
<bean id="customerDao" class="com.itheima.customerDaoImpl">
<bean id="service" class="com.itheima.serviceDaoImpl">
<property name="age" ref="userDao">
<property name="phone" ref="customerDao">
</beans>

例如:

<bean id="service" class="com.itheima.serviceDaoImpl">
<property name="age" ref="userDao">
<property name="phone" ref="customerDao">

对于这个bean,在 Service类中必须存在:
setAge(String string){}
setPhone(String string){}
这两个方法;
如果没有这两个setter方法或者name属性的值不是(Age/age)(Phone/phone)就会报错:
Bean property ‘某某属性’ is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

http://www.lryc.cn/news/2414346.html

相关文章:

  • Android和JXTA协议模型的无线D2D通信技术
  • MFC控件(四)(图像列表控件CImageList)
  • 「Linux」- 平均负载(Load Average) @20210210
  • IOS 时区日期处理及定时 (NSDate,NSCalendar,NSTimer,NSTimeZone)
  • 树莓派5串口通信
  • java trimleft_js String.prototype.trim字符去前后空格的扩展
  • Python教程:老师傅带你爬取全网妹子图!
  • vbs格式编程教程基础
  • Struts2框架漏洞总结与复现(下)
  • gbk编码在线转换工具_免费在线PDF转换小工具,让你工作效率提高90%
  • 运维堡垒机Gate One-学习笔记
  • 从零开始学习Oracle之数据备份与还原
  • 常用时序逻辑电路模块:计数器
  • 新手如何学习c语言? 小马带你入门
  • 【Python】决策树算法 详解版【附完整版示例】
  • 几个文件指针操作的函数
  • 边缘检测:Canny算子
  • 简单html页面代码分享---百度
  • 计算机病毒的基本知识
  • HTML标签及案例超详细笔记
  • Hibernate注解版关联关系映射全解析+案例
  • 什么是SOA?
  • matlab 数理统计,概率论和数理统计(matlab应用)1
  • 如何做好大型OA系统的需求分析?
  • zzuli OJ 2353: 小明学长给学弟的任务
  • ArgumentOutOfRangeException: 指定的参数已超出有效值的范围。 参数名: site
  • Apache Rewrite Rule 重写规则及作用范围
  • 康博(COMPUWARE)软件公司简介
  • webstorm安装、激活、汉化(小白亲测可用)
  • 基本RC积分电路及原理分析