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

com.jianggujin.http.support.annotation.JBaseUrl Maven / Gradle / Ivy

package com.jianggujin.http.support.annotation;

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

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

/**
 * 请求地址,通常为域名,例如:http://www.baidu.com
 * 
 * @author jianggujin
 *
 */
@Retention(RUNTIME)
@Target({ TYPE, METHOD })
public @interface JBaseUrl {
   String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy