服务器把我在页面配置的js文件当做请求地址了,如何是好?

来源:6-3 thymeleaf 常用标签的使用方法

zhaoxgx

2018-05-23 17:03

错误提示:No mapping found for HTTP request with URI [/static/js/jquery-1.7.2.min.js] in DispatcherServlet with name 'dispatcherServlet'

我在配置文件中已经配置了:

mvc: static-path-pattern: /static/**
resources: classpath:/static/**,/js/**

但是就是还出现此问题,请哪位大神指点。万分感谢!


写回答 关注

2回答

  • 无情雨
    2018-08-16 12:02:39
    加上这个配置:
    spring.resources.static-locations=classpath:/templates/static


  • 慕丝4418675
    2018-06-02 11:21:43
    你这样试试,配置一下application.yml
    spring:
      profiles:
        active: test
      messages:
        basename: i18n
      devtools:
        restart:
          exclude: static/**
          additional-paths: src/main/
      thymeleaf:
        prefix: /templates/views/
        suffix: .htm

SpringBoot开发常用技术整合

SpringBoot 极简开发的框架整合利器

102171 学习 · 508 问题

查看课程

相似问题