Spring Boot--模板引擎thymeleaf

2021-03-15 01:38

阅读:457

标签:void   too   启动   tap   资源文件   ppi   常见   pre   star   

1.引入依赖

org.springframework.boot
  spring-boot-starter-thymeleaf
 org.springframework.boot
  spring-boot-starter-web
 org.springframework.boot
  spring-boot-devtools
  runtimetrue

2.创建启动器

@SpringBootApplication
public class App {
    public static void main(String[] args) {
        SpringApplication.run(App.class, args);
    }
}

3.创建controller

@Controller
public class IndexController {
    @GetMapping("nav")
    public String index(@RequestParam(name = "name", required = false) String name, Model model) {
        model.addAttribute("name", name);
        return "index";
    }
}

4.资源文件夹下创建html文件

resource下创建templates目录,目录下创建html文件

5.测试结果

常见错误

Cannot find template location: classpath:/templates/ 检查打包是否pom(不要)

Spring Boot--模板引擎thymeleaf

标签:void   too   启动   tap   资源文件   ppi   常见   pre   star   

原文地址:https://www.cnblogs.com/KingJA/p/14012666.html


评论


亲,登录后才可以留言!