com.sinszm.sofa.annotation.EnableOrderDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of szm-sofa-boot-starter-order Show documentation
Show all versions of szm-sofa-boot-starter-order Show documentation
高可用服务框架,业务订单基础功能操作组件 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa.annotation;
import com.sinszm.sofa.condition.ConditionalOnOrderDataSource;
import org.springframework.context.annotation.Conditional;
import java.lang.annotation.*;
/**
* 是否启用SQLite3数据源
*
* @author admin
*/
@Target({ ElementType.TYPE , ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Conditional(ConditionalOnOrderDataSource.class)
public @interface EnableOrderDataSource {
}