首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring2.5 器皿注解的理解

2013-10-08 
spring2.5 容器注解的理解可以看到,我们没有在配置文件中为userService注入userDao,因为在 UserService类

spring2.5 容器注解的理解

可以看到,我们没有在配置文件中为userService注入userDao,因为在 UserService类中使用annotation的方式注入

?? <bean id="personService"
??? ?ref="dataSource" />

这时会抛出异常不认<TX>标签。。起先还以为是没有加载JAR包呢。。

后来读AOP文档才发现<beans>中要加入“xmlns:aop”的命名申明,并在“xsi:schemaLocation”中指定aop配置的schema的地址

配置文件如下:

<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
???????????????????? http://www.springframework.org/schema/beans/spring-beans.xsd
???????????????????? http://www.springframework.org/schema/tx
???????????????????? http://www.springframework.org/schema/tx/spring-tx.xsd
???????????????????? http://www.springframework.org/schema/aop
???????????????????? http://www.springframework.org/schema/aop/spring-aop.xsd">

这些才是最关键的地方。。后面的配置不变。。。。

热点排行