热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Spring_总结_03_装配Bean(四)_导入与混合配置

一、前言本文承接上一节:Spring_总结_03_装配Bean(三)之XML配置在典型的Spring应用中,我们可能会同时使用自动化和显示配置。同时&#

一、前言

本文承接上一节:Spring_总结_03_装配Bean(三)之XML配置

在典型的Spring应用中,我们可能会同时使用自动化和显示配置。同时,可能在某些场景下我们需要混合使用JavaConfig和xml配置。

 

二、在JavaConfig中引用XML配置

(1)可使用 @import注解导入JavaConfig

假设我们的配置类已经很笨重了,这时,我们可以将配置进行拆分。用一个高级别配置来组合其他配置

如:现在又两个配置类:CDConfig、CDPlayerConfig  以及一个高级配置SoundSystemConfig

@Configuration
@Import({CDPlayerConfig.class, CDConfig.class})
public class SoundSystemConfig {
}

 

若想将CDconfig用xml形式配置,则引入的时候需要使用

@Configuration
@Import(CDPlayerConfig.class)
@ImportResource("classpath:cd-config.xml")
public class SoundSystemConfig {
}

 

三、在XML中引用JavaConfig

 

在一个高级别XML配置中同时引入JavaConfig和XMLConfig

 

xml version="1.0" encoding="UTF-8"?>
<beans xmlns&#61;"http://www.springframework.org/schema/beans"xmlns:c&#61;"http://www.springframework.org/schema/c"xmlns:p&#61;"http://www.springframework.org/schema/p"xmlns:xsi&#61;"http://www.w3.org/2001/XMLSchema-instance" xmlns:util&#61;"http://www.springframework.org/schema/plugin"xsi:schemaLocation&#61;"http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/plugin http://www.springframework.org/schema/plugin/spring-plugin.xsd"><bean class&#61;"soundsystem.CDConfig" /><import resource&#61;"cdplayer-config.xml" />beans>

 

转:https://www.cnblogs.com/shirui/p/9383332.html



推荐阅读
author-avatar
L宝树
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有