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

com.gitee.easyopen.annotation.ApiService Maven / Gradle / Ivy

Go to download

一个简单易用的接口开放平台,平台封装了常用的参数校验、结果返回等功能,开发者只需实现业务代码即可。https://gitee.com/durcframework/easyopen

There is a newer version: 1.16.20
Show newest version
package com.gitee.easyopen.annotation;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import org.springframework.stereotype.Service;

/**
 * 标记类具有接口提供能力,该注解同样具备SpringBean管理功能,因为继承了@Service
 * @author tanghc
 */
@Documented
@Retention(RUNTIME)
@Target(TYPE)
@Service
public @interface ApiService {
    
    /**
     * @return 忽略验证签名,默认false,为true则仅仅忽略ApiService下面所有的接口的验签操作,但其它验证会执行。
     */
    boolean ignoreSign() default false;
    
    /**
     * @return 忽略所有验证,默认false,为true则忽略ApiService下面所有接口的验证操作。
     */
    boolean ignoreValidate() default false;
    
    /**
     * @return 是否对返回结果进行包装,影响其下所有接口。
     */
    boolean wrapResult() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy