摘要:
使用xml的方式进行声明式的事务管理 推荐使用xml的方式,因为可以同时为多个方法进行声明 阅读全文
摘要:
声明式的事务管理(AOP的主要用途之一) (Annotation的方式) 1.加入annotation.xsd 2.加入txManager bean 3.<tx:annotation-driven 4.在需要的事务的方法上加 : @Transactional @Transactional 1.被注解 阅读全文
摘要:
Spring 整合 Hibernate 1.Spring指定 database,给下面创建的 SessionFactory用 2.创建 SessionFactory ,然后注入给DAO去使用 3.往DAO中注入SessionFactory 阅读全文
摘要:
xml 配置 AOP 1.将 拦截其器对象 初始化到容器中 2.<aop:config> <aop:aspect.... <aop:pointcut <aop:before 阅读全文
摘要:
步骤: a)在beans.xml文件中加上对应的xsd文件 spring-aop.xsd b)加上<aop:aspectj-autoproxy>,使用aspectj来完成aop c) 此时就可以解析对应的 Annotation d) 建立我们的拦截类 e) 用 @Aspect 注解这个类 f) 建立 阅读全文