springboot-thymeleaf的使用(1)

标题springboot-thymelead的使用介绍

1)pom文件中引入thymeleaf所依赖的组件


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

2)在application.properties文件中禁止thymeleaf缓存

spring.thymeleaf.cache=false

3)在resources目录下建立文件夹templates
在templates文件下面建立一个html,hello.html




    
    Hello


Hello chenyang!

4)建立一个controller作为访问hello.html的入口

@Controller
public class HelloController {

    @RequestMapping("/")
    public String index(ModelMap map) {
        map.addAttribute("message", "http://www.baidu.com");
        return "hello";
    }

}

5)启动程序,浏览器输入localhost:8080/, 可以在web上看见如下内容:

http://www.baidu.com

6)thymeleaf一些语法规则的介绍
A.文本替换标签的使用th:text,该标签恶意替换文本

neo


B.url标签的使用

look

C.switch标签的使用

姑娘

爷们

未知性别

D.if标签的使用

 home 
cy

E:list标签的使用

neo 6 213 index

F:eq标签的使用


 favorites 

你可能感兴趣的:(springboot)