Whitelabel错误页面/发生意外错误(类型=内部服务器错误,状态= 500)

时间:2019-06-11 12:24:20

标签: java java-ee eclipse-jee jakarta-ee

我想读取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()));

    }

0 个答案:

没有答案