springboot整合freemarkerコード例


この文章は主にspringboot整合freemarkerコードの実例を紹介しています。ここでは例示コードを通して紹介された非常に詳細なものです。皆さんの学習や仕事に対して一定の参考となる学習価値があります。必要な友達は下記を参考にしてください。
依存

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.1.6.RELEASE</version>
</parent>

<dependencies>
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-freemarker</artifactId>
  </dependency>
  <dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
  </dependency>
  <dependency>
    <groupId>com.squareup.okhttp3</groupId>
    <artifactId>okhttp</artifactId>
    <version>3.9.1</version>
  </dependency>
  <dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.6</version>
  </dependency>

  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
  </dependency>
</dependencies>
appication.yml
パラメータパス

server:
 port: 8001
spring:
 application:
  name: test-freemarker
 freemarker:
  cache: false
  settings:
   template_update_delay: 0
  template-loader-path: classpath:/templates/
クラスを開始

@SpringBootApplication
public class FreemarkerApplication {
  public static void main(String[] args) {
    SpringApplication.run(FreemarkerApplication.class, args);
  }
  @Bean
  public RestTemplate restTemplate(){
    return new RestTemplate(new OkHttp3ClientHttpRequestFactory());
  }
}
テンプレートファイル

<!DOCTYPE html>
<!-- resources/templates/test2.ftl -->
<html>
<head lang="en">
  <meta charset="UTF-8"/>
  <title></title>
</head>
<body>
  <table>
    <tr>
      <td>  </td>
      <td>  </td>
      <td>  </td>
      <td>  </td>
      <td>    </td>
    </tr>
    <#if students??>
      <#list students as stu>
        <tr>
          <td>${stu_index}</td>
          <td <#if (stu.name == '  ')>style="background-color: #108cee"</#if> >${stu.name}</td>
          <td <#if (stu.age < 20)>style="background-color: #108cee"</#if>>${stu.age}</td>
          <td>${stu.money}</td>
          <td>${stu.birthday?date},${stu.birthday?time},${stu.birthday?string("yyyy MM dd ")}</td>
        </tr>
      </#list>
    </#if>
  </table>
  :${stuMap['stu1'].name}
  : ${stuMap.stu1.age}
<#list stuMap?keys as k>
    : ${stuMap[k].name}
    : ${stuMap[k].age}
</#list>
${stuMap???c}//      ,    ?c      
${students???c}
${(mozq.bank.address)!'      '}//         

${students?size}//    
<#assign text="{'bank':'      ', 'address':'   '}">
<#assign data=text?eval>
   : ${data.bank}   : ${data.address}
${123456123?c}//       
${123456123}//        
</body>
</html>

<!DOCTYPE html>
<!-- resources/templates/index_banner.ftl -->
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Title</title>
  </head>
  <body>
    <div class="banner-roll">
      <#if model??>
        <#list model as item>
          <div class="item" style="background-image: url(${item.value});"></div>
          </#list>
        </#if>
    </div>
    </div>
  <script type="text/javascript">
    //...
  </script>
  </body>
</html>
コントローラ

package com.mozq.springboot.freemarker.controller;

import com.mozq.springboot.freemarker.model.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.client.RestTemplate;

import java.util.*;

@Controller //       @RestController
@RequestMapping("/freemarker")
public class FreeMarkerController {

  @Autowired
  private RestTemplate restTemplate;

  @RequestMapping("/banner")
  public String banner(Map<String,Object> map){
    String dataUrl = "http://localhost:31001/cms/config/getmodel/5a791725dd573c3574ee333f";
    ResponseEntity<Map> entity = restTemplate.getForEntity(dataUrl, Map.class);
    Map body = entity.getBody();
    map.putAll((Map<? extends String, ?>) body);
    //    restTemplate.getForEntity("")
    return "index_banner";
  }

  @RequestMapping("/test2")
  public String test2(Map<String,Object> map){
    Student stu1 = new Student();
    stu1.setName("  ");
    stu1.setAge(18);
    stu1.setBirthday(new Date());
    stu1.setMoney(22225.8F);

    Student stu2 = new Student();
    stu2.setName("  ");
    stu2.setAge(20);
    stu2.setBirthday(new Date());
    stu2.setMoney(24525.8F);
    stu2.setBestFriend(stu1);

    List<Student> students = new ArrayList<>();
    students.add(stu1);
    students.add(stu2);
    //       
    map.put("students", students);

    HashMap<String, Student> stuMap = new HashMap<>();
    stuMap.put("stu1", stu1);
    stuMap.put("stu2", stu2);
    map.put("stuMap", stuMap);
    //       ,   resources/templates
    return "test2";
  }
}
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。