美文网首页
springboot使用FreeMarker时的异常

springboot使用FreeMarker时的异常

作者: 缘木与鱼 | 来源:发表于2020-06-11 17:45 被阅读0次

    1、FreeMarker模板找不到

    javax.servlet.ServletException: Circular view path [user]: would dispatch back to the current handler URL [/user] again.Check your ViewResolver setup! 
    

    解决办法:
    配置FreeMarker模板位置:在 application.properties 下配置

    # 自定义Freemarker的模板位置,模板的默认位置在classpath下的templates目录中
    spring.freemarker.template-loader-path=classpath:/file
    

    然后将模板放到对应的位置下

    相关文章

      网友评论

          本文标题:springboot使用FreeMarker时的异常

          本文链接:https://www.haomeiwen.com/subject/ywxitktx.html