<!--总结 访问非web-inf下的.jsp什么都不加--> <!--总结 访问web-inf下的.htnl加 <mvc:resources mapping="/html/**" location="/WEB-INF/html/"/> --> <!--总结 访问非web-inf下的.htnl加 <mvc:default-servlet-handler/> 或者 <mvc:resources mapping="/html2/**" location="/html2/"/> --> <!--总结 访问WEB-INF/images下的图片 <mvc:resources mapping="/images/**" location="/WEB-INF/images/"/> --> <!--总结 访问非WEB-INF/images下的图片 <mvc:resources mapping="/images2/**" location="/images2/"/> 或者 <mvc:default-servlet-handler/> --> <!--很奇怪加入 <mvc:resources mapping="/jsp2/**" location="/WEB-INF/jsp2/"/> 后访问不了WEB-INF/jsp2下的.jsp-->
<mvc:resources 注意根据自己路径更改