IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringBoot集成Thymeleaf和Freemarker模板引擎 -> 正文阅读

[Java知识库]SpringBoot集成Thymeleaf和Freemarker模板引擎

1.SpringBoot整合Mybatis

1.1 创建Boot骨架,导mybatsi的驱动以及mysql连接mybatis驱动。

 <!-- mysql驱动 -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.8</version>
        </dependency>
        <!-- mybatis -->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.1</version>
        </dependency>

1.2 yml或.properties配置数据库

#数据库配置
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/practice
spring.datasource.username=root
spring.datasource.password=123456

1.3 和mvc流程一样查询所有

在这里插入图片描述
在这里插入图片描述
注意:

@Reponsitory使用后,在启动类上加@MapperScan(“xx.xx.mapper”)注解。
?@Mapper使用后,就是两者合体,会自动进行配置加载。

在这里插入图片描述
在这里插入图片描述

2.Boot集成Thymeleaf模板引擎

2.1 引入jar包(thymeleaf对应的starter)

<!--thymeleaf模板引擎-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

2.2 配置thymeleaf(配在spring下面)

spring:
  thymeleaf:
    prefix: classpath:/templates/
    check-template-location: true
    cache: false
    suffix: .html
    encoding: UTF-8
    content-type: text/html
    mode: HTML5

prefix:指定模板所在的目录
check-tempate-location: 检查模板路径是否存在
cache: 是否缓存,开发模式下设置为false,避免改了模板还要重启服务器,线上设置为true,可以提高性能。
encoding&content-type:这个大家应该比较熟悉了,与Servlet中设置输出对应属性效果一致。

2.3 编写thymeleaf模板文件:index.html

<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta content="text/html;charset=UTF-8"/>
</head>
<body>
<h6>Thymeleaf 模板引擎</h6>
<table border="1" bgcolor="#f0ffff">
    <thead>
    <tr>
        <th>序号</th>
        <th>姓名</th>
        <th>年龄</th>
        <th>密码</th>
    </tr>
    </thead>
    <tbody th:each="yty : ${all1}">
    <tr>
        <td th:text="${yty.id}"></td>
        <td th:text="${yty.name}"></td>
        <td th:text="${yty.age}"></td>
        <td th:text="${yty.pwd}"></td>
    </tr>
    </tbody>
</table>
</body>
</html>

2.4 Controller

    //1.查询所有
    @RequestMapping("/list1")
    public String list1(Model model){
        List<User> list1 = userService.selectAllSer();
        System.out.println(list1);
        model.addAttribute("all1",list1);
        return "/index";
    }

2.5 结果

在这里插入图片描述

3.Boot集成Freemarker模板引擎

3.1 引入jar包

<!--freemarker模板引擎-->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

3.2 配置freemarker

spring:
  freemarker:
    template-loader-path: classpath:/templates/
    suffix: .ftl
    content-type: text/html
    charset: UTF-8
    settings:
      number_format: '0.##'

3.2 编写index2.ftl

<html>
<title>文章列表</title>
<body>
<h2>Freemarker模板</h2>
<table border="1">
    <thead>
    <tr>
        <th>序号</th>
        <th>姓名</th>
        <th>年龄</th>
        <th>密码</th>
    </tr>
    </thead>
    <#list all2 as yty>
    <tr>
        <td>${yty.id}</td>
        <td>${yty.name}</td>
        <td>${yty.age}</td>
        <td>${yty.pwd}</td>
    </tr>
</#list>
</table>

</body>
</html>

3.4 Controller

//1.查询所有--freemarker
    @RequestMapping("/list2")
    public String list2(Model model){
        List<User> list2 = userService.selectAllSer();
        System.out.println(list2);
        model.addAttribute("all2",list2);
        return "/index2";
    }
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-10-18 17:15:46  更:2021-10-18 17:17:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 22:23:23-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码