静态资源配置

将 resource/static 进行映射。
springboot 默认优先级:
/META-INF/resources/
/resources/
/static/
/public/

freemarker 合配 resources 配置

mvc: 
  view:
    prefix: /templates/
    suffix: .ftl
    static-path-pattern: /**resources:
  static-locations: classpath:/templates/dist/

这两天遇到的坑

你可能感兴趣的:(静态资源配置)