spring aop事物和拦截配置

<!--事务注解-->

<tx:annotation-driven/>

<!--事务管理器-->

<beanid="transactionManager"class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

<propertyname="dataSource"ref="dataSource"/>

</bean>

<!--SpringAOP事务配置-->

<tx:adviceid="txAdvice"transaction-manager="transactionManager">

<tx:attributes>

<tx:methodname="save*"rollback-for="Exception"/>

<tx:methodname="insert*"rollback-for="Exception"/>

<tx:methodname="update*"rollback-for="Exception"/>

<tx:methodname="*"read-only="true"propagation="NOT_SUPPORTED"/>

</tx:attributes>

</tx:advice>

<aop:configproxy-target-class="true">

<aop:pointcutid="serviceImplMethod"expression="execution(*com.xx.xx.xx.service.impl..*.*(..))"/>

<aop:advisorpointcut-ref="serviceImplMethod"advice-ref="txAdvice"/>

<!--<aop:pointcutid="daoMethod"

expression="execution(*com.xx.xx.dao.impl..*.*(..))"/>

<aop:advisorpointcut-ref="daoMethod"advice-ref="txAdvice"/>-->

</aop:config>

需要注意的地方:

(1)advice(建议)的命名:由于每个模块都会有自己的Advice,所以在命名上需要作出规范,初步的构想就是模块名+Advice(只是一种命名规范)。

(2)tx:attribute标签所配置的是作为事务的方法的命名类型。

如<tx:methodname="save*"propagation="REQUIRED"/>

其中*为通配符,即代表以save为开头的所有方法,即表示符合此命名规则的方法作为一个事务。

propagation="REQUIRED"代表支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。

(3)aop:pointcut标签配置参与事务的类,由于是在Service中进行数据库业务操作,配的应该是包含那些作为事务的方法的Service类。

首先应该特别注意的是id的命名,同样由于每个模块都有自己事务切面,所以我觉得初步的命名规则因为all+模块名+ServiceMethod。而且每个模块之间不同之处还在于以下一句:

expression="execution(*com.test.testAda.test.model.service.*.*(..))"

其中第一个*代表返回值,第二*代表service下子包,第三个*代表方法名,“(..)”代表方法参数。

(4)aop:advisor标签就是把上面我们所配置的事务管理两部分属性整合起来作为整个事务管理。

/**

*@Description:annotation实现AOP,session超时和日志控制

*/

@Aspect

@Component

publicclassSessionAop{

/**

*定义PointCut,无返回值,只是一个标识。括号内容是表达式,标识哪些对象的哪些方法

*@Pointcut("execution(*add*(..))||execution(*del*(..))")

*/

@Pointcut("execution(public*com.xx.xx.xx.controller.*.*(..))")

privatevoidservletCall(){

}

/**

*方法执行前处理

*

*@paramjp

*/

@Before("servletCall()")

publicvoidsessionTimeOutExceptionAspect(JoinPointjp){

Useruser=null;

for(Objectparam:jp.getArgs()){

if(paraminstanceofHttpServletRequest){

user=(User)((HttpServletRequest)param).getSession().getAttribute(ConstantsCtr.SESSION_USER);

}

}

if(user==null){

thrownewRuntimeException("操作超时");

}

System.out.println("servletCallBefore"+user.getId());//test

}

}

相关推荐