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

org.shoulder.web.annotation.SkipResponseWrap Maven / Gradle / Ivy

Go to download

shoulder WEB 模块,基于Spring Boot Web提供了 Controller AOP 日志、AOP异常处理,统一返回值,健康检查,租户、用户解析,Web 安全防护,通用CrudController,动态字典,标签管理,HTTP client AOP日志、AOP异常处理等能力,助力Web飞速开发。

The newest version!
package org.shoulder.web.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 跳过统一返回值包装
 * 加在 RestController 类上,该类所有方法跳过标准返回值包装
 * 加方法上,目标方法跳过包装
 *
 * @author lym
 */
@Inherited
@Documented
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface SkipResponseWrap {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy