Spring Boot--模板引擎thymeleaf
2021-03-15 01:38
标签:void too 启动 tap 资源文件 ppi 常见 pre star resource下创建templates目录,目录下创建html文件 Cannot find template location: classpath:/templates/ 检查打包是否pom(不要) Spring Boot--模板引擎thymeleaf 标签:void too 启动 tap 资源文件 ppi 常见 pre star 原文地址:https://www.cnblogs.com/KingJA/p/14012666.html1.引入依赖
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文件
5.测试结果
常见错误
上一篇:MFC 属性表单的创建
下一篇:蒙特卡罗算法之素数测试
文章标题:Spring Boot--模板引擎thymeleaf
文章链接:http://soscw.com/index.php/essay/64760.html