我已经创建了一个简单的spring-boot
应用程序,资源的文件夹结构如下所示:
这是application.properties文件中的数据:
spring.mvc.view.prefix=/jsp/
spring.mvc.view.suffix=.jsp
spring.mvc.static-path-pattern=/resources/**
server.port=8089
在studentsList.jsp
中,我尝试使用在studentFunctions.js
中定义的javascript函数,但是在浏览器控制台中,出现以下错误:
error: "Not Found"
message: "No message available"
path: "/static/js/studentFunctions.js"
status: 404
timestamp: "2018-12-06T16:53:02.777+0000"
我已经看到了几个类似的问题,但是还没有找到解决方法。
我同时尝试了spring.mvc.static-path-pattern=/static/**
和src/main/resources/resources
,在两种情况下,错误均为: