spring mvc中的绝对路径以及静态文件访问

最近学习spring mvc,期间引入静态的css和js的时候遇到了问题,现在记录并总结一下.

spring mvc 访问静态文件主要有两个障碍:

1. spring mvc 默认的权限设置导致无法访问;

       使用如下配置,并在webapp下新建static目录,将css和js分别放在static下的对应目录中;

    <!-- 静态资源 -->
    <mvc:resources mapping="/static/**" location="/WEB-INF/static/"/>

  目录结构如下:

  

        

 2. 没有设置正确的路径

    页面里面使用如下方式访问:   

 <link rel="stylesheet" href="${pageContext.request.contextPath}/static/css/bootstrap.css">
    <!-- Font Awesome -->
    <link rel="stylesheet" href="${pageContext.request.contextPath}/static/css/font-awesome.min.css">
    <!-- Ionicons -->
    <link rel="stylesheet" href="${pageContext.request.contextPath}/static/css/ionicons.min.css">
    <!-- Theme style -->
    <link rel="stylesheet" href="${pageContext.request.contextPath}/static/css/AdminLTE.min.css">
    <!-- AdminLTE Skins. We have chosen the skin-blue for this starter
          page. However, you can choose any other skin. Make sure you
          apply the skin class to the body tag so the changes take effect. -->
    <link rel="stylesheet" href="${pageContext.request.contextPath}/static/css/skin-blue.min.css">

  在使用中得知,

${pageContext.request.contextPath} 等价于/项目名,所以表单和ajax的请求也可以参照使用该路径.

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值