Spring用文件名中的点(s)提供静态内容

时间:2017-12-08 21:21:33

标签: java spring spring-mvc

我想通过Spring提供npm版本生成的网页,一切都运行正常,但无论真正的后缀是什么,我都无法使用像main.xxxx.yyy这样的资源(css,js或者HTML)。

目录树是这样的:

src/main/resource/resource
                  index.html
                  asset-manifest.json
                  favicon.ico
                  manifest.json
                  service-worker.js
                  static
                     css
                         main.fc656101.css
                         main.fc656101.css.map
                     js
                         main.91794276.js
                         main.91794276.js.map
                     media
                         banner.bdcf92f4.jpg
                         fontawesome-webfont.912ec66d.svg
                         ...

这是应用程序类:

@SpringBootApplication
public class Application {
   private static Logger log=Logger.getLogger(Application.class.getName());

@Bean
WebMvcConfigurer configurer () {
    return new WebMvcConfigurerAdapter() {

        @Override
        public void addResourceHandlers (ResourceHandlerRegistry registry) {
            registry.addResourceHandler("/resources/static/*").
                      addResourceLocations("classpath:/static/");
        }
        @Override
        public void configurePathMatch(PathMatchConfigurer configurer) {
            super.configurePathMatch(configurer);

            configurer.setUseSuffixPatternMatch(false);
        }
    };
}

public static void main(String[] args) {

    SpringApplication.run(Application.class, args);
}

为了调试这个问题,我手动重命名了一些文件并且它有效,所以我把问题限制在包含点的文件名中。

我看到有人解决了在RestControllers中的请求映射中添加{variable:。+}的类似问题,但是我没有控制器,所以我无法弄清楚如何去做。

编辑:

我发现使用这种配置:

@Configuration
class ServletConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configurePathMatch(final PathMatchConfigurer configurer) {
        configurer.setUseSuffixPatternMatch(false);
        configurer.setUseTrailingSlashMatch(false);
    }

    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer.favorPathExtension(false);
    }

}

现在它提供所有* .html,包含page.01.html,但仍然不是style.01.css或script.01.js。我假设是一个不同的问题,原始问题由ContentNegotiationConfigurer解决。

1 个答案:

答案 0 :(得分:1)

我写这应该是一个非常愚蠢的问题......

问题是浏览器缓存和项目清理。确保始终清除缓存(这非常明显),但也要在更改配置后清除项目中提供静态内容的位置。停止并重新启动JAVA是不应该的。

这花费了我三天但现在正在工作,正确的配置是我发布的第一个,不需要contentNegotiation配置。

希望这可以为其他人节省一天的时间!