繁体   English   中英

Springboot和Thymeleaf:HTML-> PDF转换

[英]Springboot & Thymeleaf : HTML - > PDF conversion

我将HTML转换为PDF时出错

错误:“元素类型“链接”必须由匹配的结束标记“”终止。” org.xhtmlrenderer.util.XRRuntimeException:无法加载XML资源(使用TrAX转换器)。 org.xml.sax.SAXParseException; lineNumber:9; columnNumber:3; 元素类型“链接”必须以匹配的结束标记“”终止。

该项目基于Springboot和Thymeleaf。

Springboot通过一系列复选框为用户提供表单。 该表格如下所示:

在此处输入图片说明

将表单数据提交到后端后,它会被放回到HTML表单的副本中,以呈现为PDF。 我正在使用这里概述的技术。

POST控制器:

    @PostMapping("/assessment")
public String greetingSubmit(@ModelAttribute("assessemnt") Assessment assessment, BindingResult result, Model model,
                             HttpServletRequest request, SessionStatus status) throws IOException {

    // GET A LIST OF ATTRIBUTES IN CLASS AND PUT IN MAP
    Map<String, Object> map = oMapper.convertValue(assessment, Map.class);
    Iterator it = map.entrySet().iterator();

    Map<String,String> data = new HashMap<String,String>();
    it = map.entrySet().iterator();
    while (it.hasNext()) {
        Map.Entry pair = (Map.Entry)it.next();
        if (pair.getValue() instanceof Boolean) {
            if (pair.getValue().equals(true)) {
                data.put(pair.getKey().toString(), "checked");
            }
        }
    }

    try {
        pdfGenaratorUtil.createPdf("assessmenttemplate.html",data);
    } catch (Exception e) {
        e.printStackTrace();
    }

还有评估模板.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Assessment</title>
<link rel="stylesheet" type="text/css" href="/css/assessment.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/flatly/bootstrap.min.css">
</head>
<body>
<form action="#" th:action="@{/greeting}" method="post">
<div class="container">
    <div class="navbar navbar-default">
        <div class="navbar-header">
            <a class="navbar-brand" href="#">Bootstrap 24445 + Flatly theme</a>
    </div>

</div>

<div class="panel-group" id="accordion">
    <div class="panel panel-default" id="panel1">

        <div class="panel-heading">
            <h4 class="panel-title">
                <a data-toggle="collapse" data-target="#section1" href="#collapseOne">
                    Collapsible Group Item #1
                </a>
            </h4>
        </div>
        <div id="section1" class="panel-collapse collapse">

            <div class="panel-body">
                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird
                on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table,
                raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
            </div>
                <div class="form-check form-check-inline">
                    <input class="form-check-input checkbox1" type="checkbox" id="section1Checkbox1" value="option1" th:field="*{needsAssessment.section1Checkbox1}">
                    <label class="form-check-label" for="section1Checkbox1">Checkbox 1</label>
                </div>

当行

pdfGenaratorUtil.createPdf("assessmenttemplate.html",data);

运行stacktrace是

错误:“元素类型“链接”必须由匹配的结束标记“”终止。” org.xhtmlrenderer.util.XRRuntimeException:无法加载XML资源(使用TrAX转换器)。 org.xml.sax.SAXParseException; lineNumber:9; columnNumber:3; 元素类型“链接”必须以匹配的结束标记“”终止。

错误很明显-但是,如果我将评估temple.html上传到w3验证程序,则它正确地抱怨了th标签,但链接标签未关闭没有问题。

我通过使用/>关闭所有标签来修复它。 我还必须关闭Meta标签和所有输入标签。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM