
com.github.hippo.annotation.HippoService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hippo-annotation Show documentation
Show all versions of hippo-annotation Show documentation
annotation of hippo rpc framework
The newest version!
package com.github.hippo.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 声明在接口上 如果有多个接口需要提供SOA服务,serviceName必须一样
*
* @author sl
*
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface HippoService {
/**
* 服务注册时的名字
*
* @return 服务注册名
*/
String serviceName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy