博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring mvc访问静态文件(css/js/img)访问不到
阅读量:6298 次
发布时间:2019-06-22

本文共 1119 字,大约阅读时间需要 3 分钟。

hot3.png

web.xml中配置:

 <servlet>

      <servlet-name>springmvc</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
      <servlet-name>springmvc</servlet-name>
      <url-pattern>/</url-pattern>
  </servlet-mapping>

分析原因:

因为mapping使用的是/ 默认拦截所有。

解决方案:

在spring-mvc的配置文件中添加:

 <mvc:default-servlet-handler/>

 <mvc:default-servlet-handler/>

    <mvc:annotation-driven />
      <!-- 处理静态资源的请求 -->
    <mvc:resources location="/resources/" mapping="/resources/**" />
    
    <mvc:resources mapping="/images/**" location="/images/" cache-period="31556926" />
    <mvc:resources mapping="/js/**" location="/js/" cache-period="31556926" />
    <mvc:resources mapping="/css/**" location="/css/" cache-period="31556926" />
  提示:

如果添加了 <mvc:default-servlet-handler/>提示错误信息

The prefix "mvc" for element "mvc:annotation-driven" is not bound.

解决方案:

在bean添加如下:

 xmlns:mvc="http://www.springframework.org/schema/mvc" 

  

230527_8nHZ_930697.png

在 xsi:schemaLocation中添加:

 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd

 

 

 

转载于:https://my.oschina.net/kaigejava/blog/782006

你可能感兴趣的文章
sqoop数据迁移(基于Hadoop和关系数据库服务器之间传送数据)
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
Javascript 中的 Array 操作
查看>>
java中包容易出现的错误及权限问题
查看>>
AngularJS之初级Route【一】(六)
查看>>
服务器硬件问题整理的一点总结
查看>>
SAP S/4HANA Cloud: Revolutionizing the Next Generation of Cloud ERP
查看>>
Mellanox公司计划利用系统芯片提升存储产品速度
查看>>
白帽子守护网络安全,高薪酬成大学生就业首选!
查看>>
ARM想将芯片装进人类大脑 降低能耗是一大挑战
查看>>
Oracle数据库的备份方法
查看>>
Selenium 自动登录考勤系统
查看>>
关于如何以编程的方式执行TestNG
查看>>
智能照明造福千家万户 家居智能不再是梦
查看>>
物联网如何跳出“看起来很美”?
查看>>
浅谈MySQL 数据库性能优化
查看>>
《UNIX/Linux 系统管理技术手册(第四版)》——1.10 其他的权威文档
查看>>
灵动空间 创享生活
查看>>
《UNIX网络编程 卷1:套接字联网API(第3版)》——8.6 UDP回射客户程序:dg_cli函数...
查看>>
不要将时间浪费到编写完美代码上
查看>>