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

cc.shacocloud.mirage.web.bind.annotation.ResponseBody Maven / Gradle / Ivy


package cc.shacocloud.mirage.web.bind.annotation;

import cc.shacocloud.mirage.web.bind.support.RequestResponseBodyMethodProcessor;

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;

/**
 * 指示方法返回值应绑定到web响应体的注解。支持带注解的处理程序方法。
 *
 * @see RequestResponseBodyMethodProcessor
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ResponseBody {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy