当前位置: 代码迷 >> Web前端 >> Circular view path 错误
  详细解决方案

Circular view path 错误

热度:2251   发布时间:2013-03-22 09:49:50.0
Circular view path 异常
异常
Circular view path [/login.html]: would dispatch back to the current handler URL [/login.html] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name generation.)
解决
web.xml 里面加
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.html</url-pattern>

</servlet-mapping>



  相关解决方案