Thymeleaf

概述

Thymeleaf默认的页面文件是.html

  • maven依赖

    org.springframework.boot
    spring-boot-starter-thymeleaf

  • Controller

返回字符串 index,对应模板文件index.html

@Controller
@RequestMapping(value = "/")
public class IndexController {

    @GetMapping(value = "/")
    public String index(Map paramMap) {
        paramMap.put("demo","hello world");
        return "index";
    }
}
  • Web页面

使用th:text获取传入参数




    
    thymleaf demo



  • href

直接从根路径开始

动态参数


可以使用附加语法来创建服务器根目录(而不是上下文相对)URL,以链
接到同一服务器中的不同上下文。 这些URL将被指定为

@{〜/path/to/something}

你可能感兴趣的:(Thymeleaf)