微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

thymeleaf



  • springboot认打包为jar包jar包一个压缩包,但是jsp不支持在压缩包内编译,因此springboot不支持jsp

  • Spring官方支持的服务的渲染模板有Thymeleaf和Freemarker等,Thymeleaf是用来开发Web和独立环境项目的服务器端的Java模版引擎

  • 缺点:Thymeleaf效率不高



表达式


引入Thymeleaf的starter

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

在html文件中引入命名空间

<html lang="en" xmlns:th="http://www.thymeleaf.org">


例子

success.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <Meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1 th:text="${msg}">啊哈哈</h1>
<h2><a href="www.baidu.com" th:href="${link}">去百度</a></h2>
</body>
</html>

ViewController:

@Controller
public class ViewController {

    @RequestMapping("/haha")
    public String haha(Model model){

        //model中的数据会被自动放到请求域中,相当于request.setAttribute("a",aa)
        model.addAttribute("msg","你好");
        model.addAttribute("link","https://www.bilibili.com");
        return "success";
    }
}




版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐