Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers


Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers

解析模板 [index] 时出错,模板可能不存在或可能无法被任何已配置的模板解析器访问

这里的问题是index没有被找到,我检查了一下,是index的路径写错了


@Controller
public class shrioController {
    @RequestMapping({"/","/index"})
    public String toIndex(Model model){
        model.addAttribute("msg","hello,Shiro");
        return "index";
    }
}

image
这里的index路径应该为“/templates/index”


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM