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