gpt4 book ai didi

html - 将 CSS 文件链接到 JSP 的问题

转载 作者:行者123 更新时间:2023-11-28 08:12:59 25 4
gpt4 key购买 nike

我正在尝试将 css 链接到我的 jsp 页面,但我一直收到 404 页面未找到错误。

homepage.jsp中的href: <link href="../resources/css/welcome.css" rel="stylesheet" />

file structure:
-->webapp
-->img
-->resources
-->css
-->welcome.css
-->WEB-INF
-->views
-->homepage.jsp

最佳答案

当您使用 Spring MVC 时:

<link href="<c:url value="/resources/css/welcome.css" />" rel="stylesheet">

如果你讨厌 JSTL,你可以像这样使用“page context”变量来获取资源:

<link href="${pageContext.request.contextPath}/resources/css/welcome.css" rel="stylesheet" >

关于html - 将 CSS 文件链接到 JSP 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29149928/

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