加了default不管用
<mvc:default-servlet-handler />
可以确认DispatcherServlet确实把请求拦截了,但是没有找到后没有转发给DefaultServletHttpRequestHandler,原因尚未明确。
查找资料后找到解决方案:
<mvc:resources location="/WEB-INF/js/**" mapping="/js/**"></mvc:resources>
改为
<mvc:resources location="/WEB-INF/js/" mapping="/js/**"></mvc:resources>
参考文章:
Did not find handler method for springMVC资源文件扫描不到---关于spring的那些坑
网友评论