SpringBoot FreeWorkerテンプレート技術解析


この文章は主にSpringBoot FreeWorkerテンプレートの技術解析を紹介しています。ここではコード例を通して紹介された非常に詳細で、皆さんの学習や仕事に対して一定の参考学習価値があります。必要な友達は参考にしてください。
一、依存を追加

 <!--    -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-freemarker</artifactId>
    </dependency>
二.レスポンス/templatesディレクトリで.ftlという名前の拡張子を作成するファイル

ftlファイルの文法:基礎テンプレートとhtmlと同じです。

<html>
  <head>
    <title>car</title>
  </head>
  <body>
    <table align="center" border="1px" cellspacing="0px" cellpadding="10px">
      <thead>
        <tr>
          <th>  </th>
          <th>  </th>
        </tr>
      </thead>
      <tbody>
        <#list carList as car>
          <tr>
            <td>${car.brand}</td>
            <td>${car.price}</td>
          </tr>
        </#list>
      </tbody>
    </table>
  </body>
</html>
ftlの巡回:

三、Controllerのテストコード

以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。