错误提示: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/** 但是就是还出现此问题,请哪位大神指点。万分感谢!
加上这个配置: spring.resources.static-locations=classpath:/templates/static
你这样试试,配置一下application.yml spring: profiles: active: test messages: basename: i18n devtools: restart: exclude: static/** additional-paths: src/main/ thymeleaf: prefix: /templates/views/ suffix: .htm