springboot使用thymeleaf模板引擎

1.模板引擎:为了使用户界面与业务数据(内容)分离而产生的,它可以生成特定格式的文档,用于网站的模板引擎就会生成一个标准的文档

就是将模板文件和数据通过模板引擎生成一个HTML代码

springboot使用thymeleaf模板引擎_第1张图片

2.springboot开发中,使用thymeleaf模板引擎,首先在pom文件中的导入依赖

        
        
            org.thymeleaf.extras
            thymeleaf-extras-java8time
        
        
            org.thymeleaf
            thymeleaf-spring5
        

3. 使用thymeleaf模板引擎,静态资源必须放在resources/templates

springboot使用thymeleaf模板引擎_第2张图片

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
// templates目录下的所有页面必须使用@Controller来实现页面跳转
// 需要使用thymeleaf模板引擎支持

@Controller
public class IndexController {
   @RequestMapping("/test")
    public String test(Model model){
       model.addAttribute("msg","hello,springboot");
       return "test";
   }
}

 



    
    Title




 注意:此项目建议springboot的版本建议不要使用最新版本,否则会出现各种bug

 
        org.springframework.boot
        spring-boot-starter-parent
        2.1.8.RELEASE
         
 

你可能感兴趣的:(spring,boot,java,eureka)