Springboot 模板引擎:thymeleaf

Springboot 模板引擎:thymeleaf,第1张

SpringBoot对静态资源的映射规则;

在创建项目的时候引入thymeleaf功能,

1、导入thymeleaf的名称空间

2、使用thymeleaf语法;

控制器
 
@Controller
public class HelloController {

    @RequestMapping("/hello")
    public String frist(){

        return "index";
    }
    @RequestMapping("/success")
    public String success(Map map){
        map.put("hello","你好");
        map.put("user","sunchao,xiaoming,hehe,haha");
        return "success";
    }
}
success.html



    
    Title


成功也
获取model中的hello值

循环取出map中的值




访问地址;http://localhost:8080/success

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/735381.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-27
下一篇 2022-04-27

发表评论

登录后才能评论

评论列表(0条)

保存