我想读取PDF文件,但是它给了我错误。 白标错误页面 此应用程序没有针对/ 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()));
}