gpt4 book ai didi

java - Spring REST 调用在浏览器中显示 JSON——有没有办法允许用户下载文件?

转载 作者:太空宇宙 更新时间:2023-11-04 06:42:28 25 4
gpt4 key购买 nike

我有一个基本的 REST 调用

/**
* REST CALL
* @return
*/
@RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public List<Template> getTemplatesJson(){
logger.info("GET all computers- /computers/ -- content type = application/json");
return computerService.retrieveAllComputers();
}

当我转到 URL 时,我在浏览器中看到 JSON。我们还希望用户能够将 JSON 作为文件下载(用于稍后导入)。

有没有一种简单的方法可以使用此端点来做到这一点,或者我是否需要创建一个全新的端点?

最佳答案

您可以使用 Content-Disposition header 向浏览器指示内容应作为附件下载而不是显示。

  1. Stack Overflow关于内容处置
  2. Wikipedia section关于内容处置

您的代码最终可能如下所示:

@RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public List<Template> getTemplatesJson(HttpServletResponse response) {
logger.info("GET all computers- /computers/ -- content type = application/json");
response.setHeader("Content-Disposition", "attachment; filename=templates.json");
return computerService.retrieveAllComputers();
}

关于java - Spring REST 调用在浏览器中显示 JSON——有没有办法允许用户下载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24496270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com