web-dev-qa-db-ja.com

空飛ぶ円盤、Thymeleaf、Spring

Springアプリケーションがあり、PDF生成のサポートを構築する必要があります。Thymeleafと一緒にFlying-saucerを使用してPDFをレンダリングすることを考えています。しかし、使用に関する多くの情報が見つかりません。フライングソーサーとThymeleaf。他の誰かがそれらをテクノロジーに一緒に使用したことがありますか?

17
per_jansson

Flyingsaucer-R8とThymeleaf2.0.14を問題なく使用しています(現在のバージョンのThymeleafも機能すると確信しています)。

この目的のために構成されたクラスパステンプレートリゾルバーを備えた個別のTemplateEngineがあります。これを使用して、XHTMLStringとして生成します。 Flyingsaucerは結果からPDFドキュメントを作成します。以下の例を確認してください。

以下のコードは例です--NOT PRODUCTION準備ができたコードはNO WARRANTYで使用します。わかりやすくするために、try-catch処理やリソースキャッシュはありません(PDFの作成は非常にコストのかかる操作です)。

コード

import Java.io.File;
import Java.io.FileOutputStream;
import Java.io.IOException;

import org.springframework.core.io.ClassPathResource;
import org.thymeleaf.TemplateEngine;
import org.thymeleaf.context.Context;
import org.thymeleaf.templateresolver.ClassLoaderTemplateResolver;
import org.xhtmlrenderer.pdf.ITextFontResolver;
import org.xhtmlrenderer.pdf.ITextRenderer;

import com.lowagie.text.DocumentException;
import com.lowagie.text.pdf.BaseFont;
import com.Sun.xml.internal.messaging.saaj.util.ByteOutputStream;

public class FlyingSoucerTestService {

  public void test() throws DocumentException, IOException {
    ClassLoaderTemplateResolver templateResolver = new ClassLoaderTemplateResolver();
    templateResolver.setPrefix("META-INF/pdfTemplates/");
    templateResolver.setSuffix(".html");
    templateResolver.setTemplateMode("XHTML");
    templateResolver.setCharacterEncoding("UTF-8");

    TemplateEngine templateEngine = new TemplateEngine();
    templateEngine.setTemplateResolver(templateResolver);

    Context ctx = new Context();
    ctx.setVariable("message", "I don't want to live on this planet anymore");
    String htmlContent = templateEngine.process("messageTpl", ctx);

    ByteOutputStream os = new ByteOutputStream();
    ITextRenderer renderer = new ITextRenderer();
    ITextFontResolver fontResolver = renderer.getFontResolver();

    ClassPathResource regular = new ClassPathResource("/META-INF/fonts/LiberationSerif-Regular.ttf");
    fontResolver.addFont(regular.getURL().toString(), BaseFont.IDENTITY_H, true);

    renderer.setDocumentFromString(htmlContent);
    renderer.layout();
    renderer.createPDF(os);

    byte[] pdfAsBytes = os.getBytes();
    os.close();

    FileOutputStream fos = new FileOutputStream(new File("/tmp/message.pdf"));
    fos.write(pdfAsBytes);
    fos.close();
  }
}

テンプレート

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring3-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <style>
            div.border {
                border: solid;
                border-width: 1px 1px 0px 1px;  
                padding: 5px 20px 5px 20px;
            }
        </style>        
    </head>
<body style="font-family: Liberation Serif;">

<div class="border">
    <h1 th:text="${message}">message</h1>
</div>

</body>
</html>
22
michal.kreuzman