注册bean (加入Spring的IOC容器)
- 使用@ImportResource 注解,导入Spring的配置文件(.xml)
或者 - 使用@Bean 注解 (推荐)
一、导入Spring的配置文件(.xml),来注册bean
SpringBoot 里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别;想让Spring的配置文件生效,就加载进来
- 作用:
导入Spring的配置文件,让配置文件里面的内容生效
- 注意:
虽然springboot支持这种写法,但建议使用@Bean注解的方式来替代spring的配置
- 用法:
Spring 配置文件 (bean.xml)
<?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/beans http://www.springframework.org/sch