文章目录
首先要明白,基于注解和XML两种方式的实现功能是一样的,只是两种不同的配置方式。
一、IoC配置
1、配置xml
在使用注解与xml结合的方式配置IoC之前,首先要引入context标签:
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
再配置包的扫描:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"