在使用springMVC与Hibernate集成时,需要注意的点还是比较多的,其中AOP事务就是一个
如果配置不对,会使AOP事务无效。
在我们配置项目时,一般会把配置信息按内容分为多个文件,
比如专门配置spring的配置,一般会是如下名字:spring-servlet.xml
其中的内容:
<context:component-scan base-package="com.myweb.controller"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan> <!-- 开启注解 --> <mvc:annotation-driven />
这里是使用注解加载我们的bean,需要特别注意的是 context:component-scan里只定义了扫描controller包下的bean
此处只应该加载表现层组件,如果此处还加载dao层或service层的bean会将之前容器加载的替换掉,而且此处不会进行AOP织入,所以会造成AOP失效问题(如事务不起作用)
而在定义数据库信息的xml文件中,例如spring-hibernate.xml中,需要配置数据库连接,事务等信息,此时配置如下:
<context:component-scan base-package="com.myweb"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan>
这里是配除了表现层以外的其他层
这样就能解决AOP事务不起作用的问题