org.n3r.eql.trans.spring.annotation.EnableEqlTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.trans.spring.annotation;
import org.n3r.eql.trans.spring.EqlTransactionConfig;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
/**
* Created by liolay on 15-5-7.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Import(EqlTransactionConfig.class)
public @interface EnableEqlTransaction {
}