如何将自定义标签库与 Thymeleaf 和 Spring Boot 一起使用?

How can I use a custom tag library with Thymeleaf and Spring Boot?

我用 Spring MVC、JSP 和 Tyles 创建了一个自定义标签库,所以我有几个 .tagx 文件。 对于新项目,我决定尝试 Spring Boot 和 Thymelaf,但我想保留我的自定义库...

那么,您是否可以使用 thymleaf 创建自定义标签库?或者我能否以任何方式导入我的自定义标签库?

编辑

我添加了一些代码以便更清楚。以下使用的标签是我自定义的标签。所以我在 JSP 中包含了 xmlns:form="urn:jsptagdir:/WEB-INF/tags/form"

<form:create id="fu_utente" modelAttribute="utente" path="/utente">
    <div class="row">
        <div class="col-md-12 text-center">
            <h1 class="fa fa-user-plus" style="color:green;"><b>&#160;&#160;Stai creando un nuovo utente di tipo: <var class="varFont">&#160;${utente.ruolo}</var></b></h1>
        </div>
    </div>
    <div class="row">
        <div class="col-xs-12 col-sm-12 col-md-4 col-md-offset-2">
            <field:input field="nome" id="c_utente_nome" required="true"/>
        </div>
        <div class="col-xs-12 col-sm-12 col-md-4">
            <field:input field="userName" id="c_utente_username" min="5" max="15" required="true"/>
        </div>
        <div class="col-xs-12 col-sm-12 col-md-8 col-md-offset-2">
            <field:input field="email" id="c_Utente_email" required="true" validationRegex="^[a-z0-9_\+-]+(\.[a-z0-9_\+-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.([a-z]{2,4})$"/>
        </div>
        <div class="col-xs-12 col-sm-12 col-md-4 col-md-offset-2">
            <field:input field="nuovaPassword" id="c_utente_password" min="6" max="15" required="true" type="password"/>
        </div>
        <div class="col-xs-12 col-sm-12 col-md-4">
            <field:input field="confermaNuovaPassword" id="c_utente_confirmPassword" required="true" type="password"/>
        </div>
    </div>
</form>

此页面的结果是一个标准的 HTML 页面,其中包含一个表单、一些字段和标签以及一个提交按钮..

这样我可以很快写很多html代码。例如,不是为每个字段写 <label>..... </label><input....../>,我也可以使用国际化只写 <field:input......>

我想在 Thymeleaf 中拥有(我认为可能非常有用)同样的东西。

否则,如果您知道使用 Thymeleaf 来避免节省代码和时间的方法,请告诉我..

我用下面的作为一种solution/workaround。目前我只创建了 2 个简单的标签,我不确定这是否是实现更复杂标签的好方法。

输入标签

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
    <section th:fragment="input(name, value, type, required)" class="form-group" th:switch="${required}">
        <label th:text="#{${name}}" th:for="${name}" class="control-label"></label>
        <input th:case="true" th:type="${type}" th:id="${name}" th:name="${name}" th:value="${value}" class="form-control" required="required"/>
        <input th:case="false" th:type="${type}" th:id="${name}" th:name="${name}" th:value="${value}" class="form-control"/>
    </section>
</body>
</html>

显示标签

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
    <section th:fragment="display(name, value)" class="form-group">
        <label th:text="#{${name}}" th:for="${name}" class="control-label"></label>
        <div class="box" th:id="${name}" th:text="${value}"></div>
    </section>
</body>
</html>

然后我使用了这两个标签来传递我想要的参数:

<section th:replace="~{/tags/input :: input(username, *{username}, text, true)}"></section>

<section th:replace="~{/tags/display :: display(nome, *{nome})}"></section>