<mvc:resources mapping="/static/**" location="/static/"/>只对一个页面生效
时间: 2024-01-01 11:05:31 浏览: 91
只允许打开指定网站、只允许指定的网站访问、只允许访问一个网站的方法
`<mvc:resources>` 是 Spring MVC 中用于映射静态资源的标签,它可以将 web 应用中的静态资源文件(如图片、CSS、JavaScript 等)映射到 url 上。在配置文件中,可以通过配置 `<mvc:resources>` 标签来指定静态资源的映射规则。
如果你只想让 `<mvc:resources>` 标签对某一个页面生效,可以在页面的头部加上以下代码:
```html
<head>
<spring:url value="/static/" var="staticUrl"/>
<link rel="stylesheet" href="${staticUrl}/css/style.css" type="text/css">
<script src="${staticUrl}/js/jquery.min.js"></script>
<script src="${staticUrl}/js/main.js"></script>
</head>
```
其中,`<spring:url>` 标签可以将 `/static/` 映射到变量 `staticUrl` 上,然后在页面中使用该变量来访问静态资源。这样就可以保证只有该页面使用 `<mvc:resources>` 标签映射的静态资源了。
阅读全文