我有一个模板pdf,它存储在物理路径或应用程序类路径中。我必须阅读此模板,并根据每个请求的用户输入填写每个请求的字段。我想将此文件转换为字节,并在应用程序启动期间将其存储在Configuration bean中,而不是每次读取模板文件。为此,我可以在Spring中使用ByteArrayResource或其他更好的方法。

我的目标不是每次都读取模板文件。

最佳答案

是的,如果您经常需要缓存模板字节数组,绝对是个好主意。但是请注意,这将通过文件大小增加内存使用量。

使用spring的ByteArrayResource可能是一个很好的方法,具体取决于您用于处理模板的内容。 ByteArrayResource的getInputStream()方法将始终为您提供新鲜的ByteArrayInputStream

您可以提供具有以下内容的ByteArrayResource bean:

@Bean
public ByteArrayResource infomailTemplate(@Value("classpath:infomail-template.html") Resource template) throws IOException {
    byte[] templateContent = org.springframework.util.FileCopyUtils.copyToByteArray(template.getFile());
    return new ByteArrayResource(templateContent);
}


然后只需将其自动布线即可,然后在您喜欢的任何地方,如下所示:

@Autowired
private ByteArrayResource infomailTemplate

07-24 14:52