All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sinszm.sofa.support.OrmTran Maven / Gradle / Ivy

Go to download

高可用服务框架,多数据源数据操作组件 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.

The newest version!
package com.sinszm.sofa.support;

import org.springframework.transaction.annotation.Transactional;

import java.lang.annotation.*;

/**
 * ORM事务封装注解
 *
 * @author chenjianbo
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Transactional(rollbackFor = Exception.class)
public @interface OrmTran {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy