当前位置:
首页
文章
前端
详情

springmvc 静态文件访问

// 配置静态文件访问路径,防止被拦截器拦截 注:**表示匹配该路径下的所有路径
<**mvc****:annotation-driven** />
<**mvc****:resources** **location****="/WEB-INF/static/js/"** **mapping****="/js/**"**/>
<**mvc****:resources** **location****="/WEB-INF/static/images/"** **mapping****="/images/**"**/>
<**mvc****:resources** **location****="/WEB-INF/static/css/"** **mapping****="/css/**"**/>
<**mvc****:resources** **location****="/WEB-INF/static/layer/"** **mapping****="/layer/**"**/>
<**mvc****:resources** **location****="/WEB-INF/static/layui/"** **mapping****="/layui/**"**/>

补上xml头部引用

<**beans** **xmlns****="http://www.springframework.org/schema/beans"**
**xmlns:****xsi****="http://www.w3.org/2001/XMLSchema-instance"**
**xmlns:****context****="http://www.springframework.org/schema/context"**
**xmlns:****mvc****="http://www.springframework.org/schema/mvc"**
**xsi****:schemaLocation****="http://www.springframework.org/schema/beans**
**http://www.springframework.org/schema/beans/spring-beans.xsd**
**http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd**
**http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"**\>

免责申明:本站发布的内容(图片、视频和文字)以转载和分享为主,文章观点不代表本站立场,如涉及侵权请联系站长邮箱:xbc-online@qq.com进行反馈,一经查实,将立刻删除涉嫌侵权内容。