为了账号安全,请及时绑定邮箱和手机立即绑定

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


@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 回答

检查以下几点

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

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

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信