com.github.easilyuse.core.annotation.HttpReqParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easily-http Show documentation
Show all versions of easily-http Show documentation
Easy implementation of http client remote calls through annotations
The newest version!
package com.github.easilyuse.core.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
*
* Title:HttpReqParam
*
*
* Description: 该注解用于当方法请求参数为简单参数,比如string,int等基本类型参数,该参数不能与HttpReqListBean共存
*
*
* @author linyb
*/
@Target({ ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface HttpReqParam {
// 参数必须和远程http请求参数名称一致
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy