gpt4 book ai didi

javascript - spring mvc 如何从网页内容加载js和css文件

转载 作者:太空宇宙 更新时间:2023-11-04 08:41:53 26 4
gpt4 key购买 nike

我无法从 webcontent 文件夹加载 JS 和 CSS 文件。我的登录页面没有格式化请建议我如何加载它我没有使用 maven。请找到图像。 enter image description here enter image description here

最佳答案

1) 创建“资源”文件夹。

2) 在您的 xml 文件中添加:

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

3) 在您的页面中“使用”它:

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

如果你使用 Java Config,像这样的东西就可以完成这项工作:

@Configuration
@EnableWebMvc
public class MvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry
.addResourceHandler("/resources/**")
.addResourceLocations("/resources/");
}
}

关于javascript - spring mvc 如何从网页内容加载js和css文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44066119/

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