gpt4 book ai didi

Spring 启动 : configure it to find the webapp folder

转载 作者:IT老高 更新时间:2023-10-28 13:53:41 24 4
gpt4 key购买 nike

默认情况下,Spring Boot 在我的 src/main/webapp 文件夹中查找我的 html 文件。如果我使用另一个文件夹来放置 html 文件,我在哪里可以更改 Spring Boot 的设置?

稍后,这些文件将被包装在 jar 中以进行部署。我还有其他需要担心的事情吗?

最佳答案

查看文档: http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html#boot-features-spring-mvc-static-content

静态资源从/static, /public, /resources, /META-INF/resources

如果您将应用程序打包为 JAR(部署 .jar),则不建议使用 src/main/webapp

您可以通过覆盖 WebMvcConfigurerAdapter

中的 addResourceHandlers 方法来自定义它
    @Configuration
public class MvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry){
registry.addResourceHandler("/**")
.addResourceLocations("/")
.setCachePeriod(0);
}
}

关于 Spring 启动 : configure it to find the webapp folder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28725635/

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