我有这样的项目结构:
并跟随控制器:
@RestController
public class StubController {
@GetMapping("/stub_mapping_template")
public FileSystemResource getMappingTemplate() {
return new FileSystemResource("/stub/mapping_template.csv");
}
}
但是当我在浏览器中打开时
localhost:8080/stub_mapping_template
没有下载。
在调试中我尝试输入:new FileSystemResource("/stub/mapping_template.csv").exists()
然后返回false
。
我试着写:
new FileSystemResource("stub/mapping_template.csv").exists()
但结果相同
答案 0 :(得分:2)
而不是FileSystemResource
使用ClassPathResource
@GetMapping("/stub_mapping_template")
public FileSystemResource getMappingTemplate(HttpServletResponse response) {
ClassPathResource classPathResource = new ClassPathResource("/stub/mapping_template.csv");
File file = classPathResource.getFile();
InputStream in = new FileInputStream(file);
response.setContentType(....);
response.setHeader("Content-Disposition", "attachment; filename=" + file.getName());
response.setHeader("Content-Length", String.valueOf(file.length()));
FileCopyUtils.copy(in, response.getOutputStream());
response.flushBuffer();
}
答案 1 :(得分:0)
或者,如果您想坚持使用FileSystemResource,则可以执行以下操作:
new FileSystemResource("src/main/resources/stub/mapping_template.csv");
答案 2 :(得分:-1)
也许FileSystemResource会获取您文件的完整网址。其中一种技术是,从PC上的“我的电脑”复制路径。并继续从网址的开头删除