2017年3月8日

Spring AOP 使用总结

摘要: spring AOP 使用总结 第一种形式:基于注解(推荐)@Aspect@Componentpublic class MyAdvice{ @Pointcut(value="execution(* xxx.xxx.*(..))") public void myPointcut(){} //@Befo 阅读全文

posted @ 2017-03-08 21:58 LZHL 阅读(160) 评论(0) 推荐(0) 编辑

spring事务配置总结

摘要: spring事务配置总结 第一种:使用注解(推荐) <!-- 第一步 配置事务管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> 阅读全文

posted @ 2017-03-08 17:33 LZHL 阅读(224) 评论(0) 推荐(0) 编辑

导航