qq_不惑_cprDGL
2021-05-18 10:20
@Controller
@RequestMapping("ftl")
public class FreemarkerController {
@Autowired
private Resource resource;
@RequestMapping("/index")
public String index(ModelMap map){
map.addAttribute("resource", resource);
return "freemarker/index";
}
@RequestMapping("center")
public String center(){
return "freemarker/center/center";
}
@RequestMapping("test")
public String test(){
return "test";
}
}
检查以下几点
pom.xml文件里是否加了freemarker依赖
application.properties 是否添加了 freemarker的配置
src/main/resources/templates/freemarker目录下是否有index.ftl文件
SpringBoot开发常用技术整合
102207 学习 · 530 问题
相似问题