第十二章:SpringBoot_Web开发——(引入thymeleaf模板)

总目录:SpringBoot学习教程


1.以前我们使用的界面都是jsp的格式,对数据进行一些遍历,判断等等,支持非常强大的功能。

2.SpringBoot项目是以jar包的方式,而不是web。我们用的还是默认的嵌入式tomcat,不支持jap。

3.如果我们使用纯静态的页面,我们开发就非常的麻烦了。

所以,SpringBoot推荐我们使用模板引擎。一些常见的模板引擎的有。(JSP,Velocity,Freemarker,Thymeleaf)

不管使用哪个模板引擎,他们的思想都是一样的。

我们写一个页面模板,比如有些值是动态的,我们写一些表达式,而这些值从哪里来的,我们来组装一些数据,然后我们把这个模板和这些数据交个模板引擎,模板引擎按照这个数据,帮忙把这些表达式解析,填充到指定的位置,然后这些数据最终生成一个我们想要的内容,给我们显示出来。这就是模板引擎。

不同模板引擎直接的语法有点区别。

第十二章:SpringBoot_Web开发——(引入thymeleaf模板)_第1张图片

(一)第一步,在pom中引入依赖。


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

如果我们光添加了上面的依赖,这个模板引擎也可以用,但是不是最新的版本。

切换版本:如果我们想要使用最新的版本,就需要在pom文件中的 properties标签中添加配置。


                
		3.0.9.RELEASE
		2.2.2
	

(二)第二步,Thymeleaf使用&语法

1.必须在classpath:/templates/ 下面的页面才能使用templates模板引擎,templates就能自动渲染

定义一个类Controller类:

@Controller
public class HelloController {
    @RequestMapping("/hello111")
    public String HelloTest(){
        //他就会去 classpath:/templates下面寻找 hello.html
        return "hello";
    }
}

定义一个hello.html页面:


访问:

第十二章:SpringBoot_Web开发——(引入thymeleaf模板)_第2张图片


语法:参考这个教程 https://blog.csdn.net/u014042066/article/details/75614906


我写的demo:

controller:

@Controller
public class HelloController {
    @RequestMapping("/hello111")
    public String HelloTest(){
        //他就会去 classpath:/templates下面寻找 hello.html
        return "hello";
    }

    @RequestMapping("/success")
    public String Test(Map map){
        map.put("hello","

你好

"); map.put("user", Arrays.asList("科比","湖人")); return "success"; } }

success.html页面:




    
    Title


成功




[[${u}]]

访问http://localhost:8080/success

显示:

第十二章:SpringBoot_Web开发——(引入thymeleaf模板)_第3张图片


你可能感兴趣的:(Springboot,thymeleaf)