gpt4 book ai didi

javascript - Spring中css、js文件放在哪里?

转载 作者:行者123 更新时间:2023-11-28 03:24:17 29 4
gpt4 key购买 nike

您好,我正在尝试将 css 和 js 添加到我的元素中。我已经创建了 Spring 启动元素并将 css 和 js 文件放在 webapp/resources/但它不起作用。

enter image description here

我应该如何将它们包含在我的 .html 文件中?路径是什么?

我也加了

public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry
.addResourceHandler("/resources/**")
.addResourceLocations("/resources/");
}

到我的 springConfig 类。

最佳答案

1.尝试将路径指向静态文件夹

registry
.addResourceHandler("/static/**")
.addResourceLocations("/static/")
.setCachePeriod(604800); // <- this catches your resource so you dont need to download everytime

2。我应该如何将它们包含在我的 .html 文件中?路径是什么?如果您在 View 中使用 JSTL 标签,请使用 c taglib

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<link href="<c:url value="/static/img/favicon.ico" />" rel="shortcut icon" />

关于javascript - Spring中css、js文件放在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45068081/

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