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
然后将模板放到对应的位置下
网友评论