gpt4 book ai didi

css - 如何在 spring mvc 中从 jsp 文件映射 css 和 js 文件

转载 作者:太空宇宙 更新时间:2023-11-04 10:51:33 25 4
gpt4 key购买 nike

我是 Spring mvc 的新手。我想在jsp中添加css和js文件。这是一个 spring mvc 框架。这是我的 spring-dispatcher-servlet.xml 代码

<mvc:annotation-driven />
<mvc:resources location="/resources/**" mapping="/css/**"/>

SpringDemo 是我的元素名称文件夹。我把我的文件放在SpringDemo/WebContent/resources/css 和在同一个位置我也保留我的 js 文件SpringDemo/WebContent/resources/js

下面的代码是名为 RegistrationForm.jsp 的 jsp 文件

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

<link href="WebContent/resources/css/style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/SpringDemo/js/jquery.min.js"></script>

最佳答案

看起来你的资源映射不正确,你的 css 和 js 文件在“/resources”文件夹下,对吗?那么映射应该是

<mvc:resources mapping="/resources/**" location="/resources/"/>

在 View 中包含元素已在 stackoverflow 本身中多次回答。可以引用unable to use resources like css/js in spring mvcHow to include js and CSS in JSP with spring MVC

关于css - 如何在 spring mvc 中从 jsp 文件映射 css 和 js 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34959932/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com