tech.guyi.web.quick.service.datasource.DefaultTransactional Maven / Gradle / Ivy
The newest version!
package tech.guyi.web.quick.service.datasource;
import org.springframework.transaction.annotation.Transactional;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Transactional(value = "transactionManager")
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD,ElementType.TYPE})
public @interface DefaultTransactional {
}