Spring启动服务下载文件

前端之家收集整理的这篇文章主要介绍了Spring启动服务下载文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想使用spring boot创建一个restful服务,它将下载位于服务器http:8080 / someurl / {fileid}的jar.我该怎么办?

最佳答案
    @RequestMapping(value = "/files/{fileID}",method = RequestMethod.GET)
    public void getFile(
        @PathVariable("fileID") String fileName,HttpServletResponse response) throws IOException {
            String src= DestLocation.concat("\\"+fileName+".jar");
            InputStream is = new FileInputStream(src);
            IoUtils.copy(is,response.getOutputStream());
            response.flushBuffer();
    }
原文链接:https://www.f2er.com/spring/431823.html

猜你在找的Spring相关文章