<!-- 1. 配置事务管理器 -->
<bean ></property>
</bean>
<!-- 2. 配置事务属性, 需要事务管理器 -->
<tx:advice />
</tx:attributes>
</tx:advice>
<!-- 3. 配置事务切点, 并把切点和事务属性关联起来 -->
<aop:config>
<aop:pointcut expression="execution(* com.atguigu.spring.hibernate.service.*.*(..))" />
</aop:config>