在使用静态资源<mvc:resources>后可能会无法访问@Controller,找了半天的错误后才发现原来还得在添加这个
<!-- 配置静态目录 --> <mvc:annotation-driven/> <mvc:resources location="/html/" mapping="/html/"/> <mvc:resources location="/back_css/" mapping="/back_css/"/> <mvc:resources location="/back_js/" mapping="/back_js/"/> <mvc:resources location="/back_img/" mapping="/back_img/"/> <mvc:resources location="/back_other/" mapping="/back_other/"/> <mvc:resources location="/layer/" mapping="/layer/"/> <mvc:resources location="/laypage/" mapping="/laypage/"/> <mvc:default-servlet-handler/>
加上前面一个和后面一个就好了
时间: 2025-01-07 13:14:50