SpringBoot angular App不提供所有js文件

时间:2017-05-03 06:22:33

标签: javascript angularjs maven tomcat spring-boot

我们通过SpingBoot应用程序提供角色应用程序。当最初开发应用程序的开发人员编译WAR包并将其部署在TOMCAT服务器上时,一切正常。

但是当其他人克隆源代码并尝试构建并运行它不起作用的相同代码时,最终会在浏览器控制台中发出以下错误。似乎"一些"不提供静态内容。可以确认给定的文件与其他服务的js文件一致。

li = "[1,2,3,4,5]"
li = eval(li)
print(li)

我们没有明确配置任何MVC配置,但依赖于Boot的默认配置。即。我们已将所有静态内容放在localhost/:40 GET http://localhost:8080/js/angular-jwt/dist/angular-jwt.js localhost/:41 GET http://localhost:8080/js/angular-storage/dist/angular-storage.js localhost/:42 GET http://localhost:8080/js/auth0-angular/build/auth0-angular.min.js localhost/:40 GET http://localhost:8080/js/angular-jwt/dist/angular-jwt.js (index):41 GET http://localhost:8080/js/angular-storage/dist/angular-storage.js (index):42 GET http://localhost:8080/js/auth0-angular/build/auth0-angular.min.js 目录中,默认情况下该引导据说是在服务。所以现在它看起来像下面,

enter image description here

P.S。:构建系统目前正在进行中。 非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

此问题已得到解决。它只是由于错误处理的.gitignore文件而被捆绑在内部的少量文件中没有被推送到上游存储库。一个可怜的错误。