本文实例讲述了Spring实战之获取其他Bean的属性值操作。分享给大家供大家参考,具体如下:
创新互联主营凯里网站建设的网络公司,主营网站建设方案,成都App制作,凯里h5成都微信小程序搭建,凯里网站营销推广欢迎凯里等地区企业咨询一 配置
<?xml version="1.0" encoding="GBK"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <!--下面配置定义一个将要被引用的目标bean--> <bean id="person" class="org.crazyit.app.service.Person"> <property name="age" value="30"/> <property name="son"> <!-- 使用嵌套Bean定义setSon()方法的参数值 --> <bean class="org.crazyit.app.service.Son"> <property name="age" value="11" /> </bean> </property> </bean> <!-- 将指定Bean实例的getter方法返回值定义成son1 Bean --> <bean id="son1" class= "org.springframework.beans.factory.config.PropertyPathFactoryBean"> <!-- 确定目标Bean,指定son1 Bean来自哪个Bean的getter方法 --> <property name="targetBeanName" value="person"/> <!-- 指定son1 Bean来自目标bean的哪个getter方法,son代表getSon() --> <property name="propertyPath" value="son"/> </bean> <!-- 简化配置 <util:property-path id="son1" path="person.son"/> --> <!-- 下面定义son2 Bean --> <bean id="son2" class="org.crazyit.app.service.Son"> <property name="age"> <!-- 使用嵌套Bean为调用setAge()方法指定参数值 --> <!-- 以下是访问指定Bean的getter方法的简单方式, person.son.age代表获取person.getSon().getAge()--> <bean id="person.son.age" class= "org.springframework.beans.factory.config.PropertyPathFactoryBean"/> </property> </bean> <!-- 简化配置 <bean id="son2" class="org.crazyit.app.service.Son"> <property name="age"> <util:property-path path="person.son.age"/> </property> </bean> --> <!-- 将基本数据类型的属性值定义成Bean实例 --> <bean id="theAge" class= "org.springframework.beans.factory.config.PropertyPathFactoryBean"> <!-- 确定目标Bean,表明theAge Bean来自哪个Bean的getter方法的返回值 --> <property name="targetBeanName" value="person"/> <!-- 使用复合属性来指定getter方法。son.age代表getSon().getAge() --> <property name="propertyPath" value="son.age"/> </bean> <!-- 简化配置 <util:property-path id="theAge" path="person.son.age"/> --> <!-- 将基本数据类型的属性值定义成Bean实例 --> <bean id="theAge2" class= "org.springframework.beans.factory.config.PropertyPathFactoryBean"> <!-- 确定目标Bean,表明theAge2 Bean来自哪个Bean的属性。 此处采用嵌套Bean定义目标Bean --> <property name="targetObject"> <!-- 目标Bean不是容器中已经存在的Bean, 而是如下的嵌套Bean--> <bean class="org.crazyit.app.service.Person"> <property name="age" value="30"/> </bean> </property> <!-- 指定theAge2 Bean来自目标bean的哪个getter方法,age代表getAge() --> <property name="propertyPath" value="age"/> </bean> </beans>
另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
分享标题:Spring实战之获取其他Bean的属性值操作示例-创新互联
链接分享:https://www.cdcxhl.com/article6/hdsog.html
成都网站建设公司_创新互联,为您提供网站营销、ChatGPT、App开发、小程序开发、网页设计公司、品牌网站制作
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联