swagger ui没有从通用字段中挑选apimodelproperty注释

时间:2017-01-28 20:40:13

标签: java spring swagger

为什么是这个注释

ffmpeg -i $x -acodec libmp3lame -ac 2 -ab 128k -vn -y "$c"

没有被声称为参数化泛型的字段上的swagger ui拾取? 它适用于简单的字符串字段

1 个答案:

答案 0 :(得分:1)

添加注释属性DataType =" java.lang.String"修好了

<table>
  <thead>
    <tr>
      <th>First</th>
      <th>Second</th>
      <th>Third</th>
      <th>Fourth</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="first">100</td>
      <td class="second">10</td>
      <td class="third">300</td>
      <td class="fourth">400</td>
    </tr>
    <tr>
      <td class="first">1000</td>
      <td class="second">10</td>
      <td class="third">3000</td>
      <td class="fourth">4000</td>
    </tr>
  </tbody>
</table>