SpringMvc_day01_3(静态资源的放行)

本文介绍如何在SpringMVC中配置静态资源放行,避免404错误。通过<mvc:resources>标签设置location及mapping属性,实现对指定路径下的静态资源如JS、CSS、图片等直接放行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

                                                                               静态资源的放行

在页面中 有这么一句静态资源请求语句:

<script type="text/javascript" src="js/demo.js"></script>

相当于在浏览器的地址栏中输入了 请求地址一样,一样的会被DIspactherServlet的拦截请求,会被HandlerMapping 解析,然后对应的方法执行,但是此时并没有对应的方法,所以会被报404错误。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">
     <!-- 扫描注解,当SpringMvc扫描之后,Spring不能再扫了 -->
     <context:component-scan base-package="com.bjsxt.controller"></context:component-scan>   
        
     <!-- 配置DefaultAnnotationHandlerMapping和AnnotationMethodHandlerAdapter 的<bean> -->
     <mvc:annotation-driven></mvc:annotation-driven>


	 <!-- 静态资源放行 -->
	 <!-- mapping表示 handlermapping解析之后出现什么的格式 (会自动添加 /)-->
	 <!-- handlerapdater就不会去寻找@RequestMapping(),而是去location中寻找资源 -->
	 <!-- **表示子文件/子文件夹的内容 -->
	 <mvc:resources location="/js/" mapping="/js/**"></mvc:resources><!-- js/demo.js  js/abc/demo.js -->
</beans>


在SpringMVC3.0之后推荐使用一:

	<mvc:resources location="/img/" mapping="/img/**"/>   
	<mvc:resources location="/js/" mapping="/js/**"/>    
	<mvc:resources location="/css/" mapping="/css/**"/>  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值