Spring声明式事务注意事项

 />


一、使用@Transactionnal注解的配置

//所有异常都不回滚(举例说明)

@Transactional(noRollbackFor = Exception.class)  <---③

public class LabServiceImpl implements LabService
{
...
}

如上没有问题。


二、基于tx/aop命名空间的配置

    execution(* com.newxren.lab.service.*.*(..))"/>      <---①

   



   

        no-rollback-for="Exception"/>  <---④

          <---②

   


注意事项

①:execution(* com.newxren.lab.service.*.*(..))

第一个*匹配返回值类型;第二个*匹配包路径;第三个*匹配方法名;(..)匹配方法参数0到多个任意类型参数,

(String, *, *,String, ..)则匹配第一个和第四个参数为String类型、其余参数任意。


错误配置: execution(* com.newxren.lab.service.*(..))会去service包中的类,而我们的实现类一般放在service.impl中,所以启动时会报如下异常信息:

org.springframework.beans.factory.BeanCreationException:Error creating bean with name 'labServiceImpl'

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.transaction.config.internalTransactionAdvisor'

Caused by: org.springframework.beans.factory.BeanCreationException:Error creating bean with name 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0'

Caused by: java.lang.IllegalArgumentException:warningno match for this type name:com.newxren.lab.service [Xlint:invalidAbsoluteTypeName]


②:*no-rollback-for="Exception"/>

此处*并不是匹配中第三个*匹配的所有的方法,而是在特别匹配的方法之外所有剩余的方法(此例中匹配add()以外的所有方法),所以为了达到处的配置效果,必须在配置no-rollback-for="Exception"


错误配置:no-rollback-for对add方法不起作用


   
       
        no-rollback
-for="Exception"/>

   


psLabService接口定义及其实现类

接口:LabService

package com.newxren.lab.service;

...
public interface LabService
{
    public LabObj add(LabObj obj);
}


接口实现类:LabServiceImpl

package com.newxren.lab.service.impl;

...
public class LabServiceImpl implements LabService
{
    @Autowired
    private LabDao labDao;

    @Override
    public LabObj add(LabObj obj)
    {
        return labDao.save(obj);
    }

    @Override
    public LabObj save(LabObj obj)
    {
        return labDao.save(obj);
    }
}

你可能感兴趣的:(Spring声明式事务注意事项)