jdbcTemplate 和 Thymeleaf模板引擎 查询 到模板赋值例子

Posted 多啦C梦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jdbcTemplate 和 Thymeleaf模板引擎 查询 到模板赋值例子相关的知识,希望对你有一定的参考价值。

二、  jdbcTemplate 和 Thymeleaf模板引擎  最简单输出例子

控制器代码

@GetMapping(value = "/test2")
    public String test2(Model model){

        sql = "SELECT * FROM boy ";
        List queryList = jdbcTemplate.queryForList(sql);

        model.addAttribute("boy", queryList);
        return  "aaa";

    }

html模板里的代码

<ul>
    <li th:each="a:${boy}">
        <span th:text="${a.id}"></span>
        <span th:text="${a.age}"></span>
        <span th:text="${a.cup_size}"></span>

    </li>
</ul>

 

注意,模板里的

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
不要漏了下面这句
xmlns:th="http://www.thymeleaf.org"

 

以上是关于jdbcTemplate 和 Thymeleaf模板引擎 查询 到模板赋值例子的主要内容,如果未能解决你的问题,请参考以下文章

4Spring Boot 自动配置原理

React App 对 Spring 启动 thymeleaf 应用程序的唯一身份验证

spring boot 系列之六:@Conditional和spring boot的自动配置

JdbcTemplate 和 NamedParameterJdbcTemplate详解

模板模式

模板模式