我的配置跟老师一样,为什么提示cannot resolve MVC view"freemarker/index"

来源:6-1 SpringBoot 整合freemarker

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";
    }
}


写回答 关注

1回答

  • 宝慕林Freesky
    2021-06-16 16:08:00

    检查以下几点

    1. pom.xml文件里是否加了freemarker依赖

    2. application.properties 是否添加了 freemarker的配置

    3. src/main/resources/templates/freemarker目录下是否有index.ftl文件

SpringBoot开发常用技术整合

SpringBoot 极简开发的框架整合利器

102170 学习 · 508 问题

查看课程

相似问题