com.sinszm.sofa.annotation.EnableValidate 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 Show documentation
Show all versions of szm-sofa-boot-starter Show documentation
高可用服务框架,公共依赖库 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa.annotation;
import com.sinszm.sofa.condition.ConditionalOnStarter;
import org.springframework.context.annotation.Conditional;
import java.lang.annotation.*;
/**
* 验证必要参数
*
* @author fh411
*/
@Target({ ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Conditional(ConditionalOnStarter.class)
public @interface EnableValidate {
}