设为首页收藏本站

LUPA开源社区

 找回密码
 注册
文章 帖子 博客
LUPA开源社区 首页 业界资讯 软件追踪 查看内容

swagger-bootstrap-ui 1.6发布,前端UI实现

2017-9-6 21:04| 发布者: joejoe0332| 查看: 647| 评论: 0|原作者: oschina|来自: oschina

摘要: swagger-bootstrap-ui 1.6 发布了。swagger-bootstrap-ui 是 Swagger 的前端 UI 实现,目的是替换 Swagger 默认的 UI 实现 Swagger-UI,使文档更友好一点儿swagger-bootstrap-ui 1.6更新如下:1、支持文件上传,需要 ...

swagger-bootstrap-ui 1.6 发布了。swagger-bootstrap-ui 是 Swagger 的前端 UI 实现,目的是替换 Swagger 默认的 UI 实现 Swagger-UI,使文档更友好一点儿

swagger-bootstrap-ui 1.6更新如下:

1、支持文件上传,需要指定dataType=MultipartFile,如下:

 @ApiOperation(value = "文件素材上传接口")
 @ApiImplicitParams({@ApiImplicitParam(name = "file", value = "文件流对象,接收数组格式", required = true,dataType = "MultipartFile"),
            @ApiImplicitParam(name = "title", value = "title", required = true)}
    )
 @RequestMapping(value="/uploadMaterial",method = RequestMethod.POST)
 @ResponseBody
 public RestMessage uploadMaterial(@RequestParam(value="file") MultipartFile[] files,@RequestParam(value = "title") String title, HttpServletRequest request) throws IOException {
        //int mul=1*1024*1024;
        String realPath=request.getSession().getServletContext().getRealPath("/upload");
  //......
}

2、ResponseBody<String>类型的string展示

3、布局溢出的问题.bycdao-main样式调整,修改margin-left:270px;

4、ApiImplicitParam注解defaultValue属性支持

5、菜单名称调整,展示接口方法类型、接口地址、接口说明三个参数

maven坐标:

<dependency>
   <groupId>com.github.xiaoymin</groupId>
   <artifactId>swagger-bootstrap-ui</artifactId>
   <version>1.6</version>
</dependency>

酷毙

雷人

鲜花

鸡蛋

漂亮
  • 快毕业了,没工作经验,
    找份工作好难啊?
    赶紧去人才芯片公司磨练吧!!

最新评论

关于LUPA|人才芯片工程|人才招聘|LUPA认证|LUPA教育|LUPA开源社区 ( 浙B2-20090187 浙公网安备 33010602006705号   

返回顶部