web-dev-qa-db-ja.com

テンプレートエンジンとしてthymeleafを使用してPDFレポートを生成する方法

Spring MVCアプリケーションでPDFレポートを作成したいのですが。 HTMLのレポートページをデザインしてPDFファイルに変換するには、themeleafを使用したいと思います。 PDFのスタイル設定にxlstを使用したくありません。そのようにすることは可能ですか?

注:これはクライアントの要件です。

12

Thymeleafが提供するSpringTemplateEngineを使用できます。以下はその依存関係です:

<dependency>
    <groupId>org.thymeleaf</groupId>
    <artifactId>thymeleaf-spring4</artifactId>
</dependency>

以下は、PDFを生成するために行った実装です。

@Autowired
SpringTemplateEngine templateEngine;

public File exportToPdfBox(Map<String, Object> variables, String templatePath, String out) {
    try (OutputStream os = new FileOutputStream(out);) {
        // There are more options on the builder than shown below.
        PdfRendererBuilder builder = new PdfRendererBuilder();
        builder.withHtmlContent(getHtmlString(variables, templatePath), "file:");
        builder.toStream(os);
        builder.run();
    } catch (Exception e) {
        logger.error("Exception while generating pdf : {}", e);
    }
    return new File(out);
}

private String getHtmlString(Map<String, Object> variables, String templatePath) {
    try {
        final Context ctx = new Context();
        ctx.setVariables(variables);
        return templateEngine.process(templatePath, ctx);
    } catch (Exception e) {
        logger.error("Exception while getting html string from template engine : {}", e);
        return null;
    }
}

以下に示すJava tempディレクトリにファイルを保存し、好きな場所にファイルを送信できます。

System.getProperty("Java.io.tmpdir");

注:PDFの生成頻度が高い場合は、一時ディレクトリから一度使用したファイルを必ず削除してください。

3
Vijay

あなたはflying-saucer-pdfのようなものを使用する必要があります、次のようなコンポーネントを作成してください:

@Component
public class PdfGenaratorUtil {
    @Autowired
    private TemplateEngine templateEngine;
    public void createPdf(String templateName, Map<String, Object> map) throws Exception {
        Context ctx = new Context();
        Iterator itMap = map.entrySet().iterator();
        while (itMap.hasNext()) {
            Map.Entry pair = (Map.Entry) itMap.next();
            ctx.setVariable(pair.getKey().toString(), pair.getValue());
        }

        String processedHtml = templateEngine.process(templateName, ctx);
        FileOutputStream os = null;
        String fileName = UUID.randomUUID().toString();
        try {
            final File outputFile = File.createTempFile(fileName, ".pdf");
            os = new FileOutputStream(outputFile);

            ITextRenderer renderer = new ITextRenderer();
            renderer.setDocumentFromString(processedHtml);
            renderer.layout();
            renderer.createPDF(os, false);
            renderer.finishPDF();

        }
        finally {
            if (os != null) {
                try {
                    os.close();
                } catch (IOException e) { /*ignore*/ }
            }
        }
    }
}

次に、単に@Autowireこのコンポーネントをコントローラー/サービスコンポーネントに追加して、次のようにします。

Map<String,String> data = new HashMap<String,String>();
    data.put("name","James");
    pdfGenaratorUtil.createPdf("greeting",data); 

どこ "greeting"はテンプレートの名前です

詳細は http://www.oodlestechnologies.com/blogs/How-To-Create-PDF-through-HTML-Template-In-Spring-Boot を参照してください

4
SilentICE