博客
关于我
spring(5)——通过import标签整合多个beans
阅读量:327 次
发布时间:2019-03-04

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

1.创建applicationContext.xml文件和beans2.xml文件

  1. beans2.xml
  1. applicationContext.xml
  1. import可以将其他beans中的bean添加过来
  2. 当导入多个beans,其中有相同的bean(对象)时,spring会自动将其合并
  3. 当import多个beans,其中的bean拥有相同的id,但是对象属性不同时。通过getBean("helloSpringNew1")获取这个id会得到最后import的beans中的bean(当id相同时:后import的会覆盖先import的)

2.测试代码

package com.lixv.dao;import com.lixv.entity.Hello;import com.lixv.entity.HelloSpring;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestSpring {       public static void main(String[] args) {           ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");        HelloSpring hellospring1 = (HelloSpring) context.getBean("helloSpringNew1");        System.out.println(hellospring1);    }}

3.运行结果

在这里插入图片描述

转载地址:http://voeq.baihongyu.com/

你可能感兴趣的文章
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>
multiprocessing.Pool:map_async 和 imap 有什么区别?
查看>>