模块 org.redkale

注释类型 RestParam


  • @Documented
    @Target(PARAMETER)
    @Retention(RUNTIME)
    public @interface RestParam
    依附在RestService类的方法的参数上
    name='&' 表示当前用户
    name='#'表示截取uri最后一段
    name='#xxx:'表示从uri中/pipes/xxx:v/截取xxx:的值

    详情见: https://redkale.org

    作者:
    zhangjx
    • 可选元素概要

      可选元素 
      修饰符和类型 可选元素 说明
      String comment
      备注描述
      String example
      for OpenAPI Specification 3.1.0
      String name
      参数名
      name='&'表示当前用户;
      name='#'表示截取uri最后一段;
      name='#xxx:'表示从uri中/pipes/xxx:v/截取xxx:的值
      int radix
      转换数字byte/short/int/long时所用的进制数, 默认10进制
      boolean required
      参数是否必传, 框架运行中不作验证, only for OpenAPI Specification 3
    • 元素详细资料

      • name

        String name
        参数名
        name='&'表示当前用户;
        name='#'表示截取uri最后一段;
        name='#xxx:'表示从uri中/pipes/xxx:v/截取xxx:的值
        返回:
        String
        默认值:
        ""
      • radix

        int radix
        转换数字byte/short/int/long时所用的进制数, 默认10进制
        返回:
        int
        默认值:
        10
      • required

        boolean required
        参数是否必传, 框架运行中不作验证, only for OpenAPI Specification 3
        返回:
        boolean
        默认值:
        true
      • example

        String example
        for OpenAPI Specification 3.1.0
        返回:
        String
        默认值:
        ""
      • comment

        String comment
        备注描述
        返回:
        String
        默认值:
        ""