问题简述:
浏览器可以访问项目webapp下的index.jsp,但是无法访问再下一级的admin/index.html
提示404,错误描述:The requested resource is not available.
出错原因:
springmvc配置文件少写了一行静态资源处理器
解决方法:
src/main/resources/spring/springmvc.xml
增加一句
<!-- 静态资源处理器 -->
<mvc:default-servlet-handler/>