我想阅读 PDF 文件,但它给了我错误。Whitelabel 错误页面 此应用程序没有针对 /error 的显式映射,因此您将其视为后备。出现意外错误(类型=内部服务器错误,状态=500)。
@GetMapping(path = "/pdf/{id}", produces =MediaType.APPLICATION_PDF_VALUE)
public byte[] getPDF(@PathVariable("id") Long id) throws Exception {
FichierTechnique fichierTechnique = fichierTechniqueDao.findById(id).get();
return Files.readAllBytes(Paths.get(System.getProperty("user.home") + "/MasterAuto/" + fichierTechnique.getNameFichierTechnique()));
}