使用框架:SpringBoot
HTML5模板引擎:Thymeleaf
在前端login页面中引用了js:
1 <script src="/webjars/jquery/2.2.4/jquery.min.js"></script> 2 <script th:src="@{|/js/${subsystem}/supersized.3.2.7.min.js|}"></script> 3 <script th:src="@{|/js/${subsystem}/${pageName}.js|}"></script>
并同时开启了WebSecurity验证:
1 @Configuration 2 @EnableWebSecurity 3 public class WebSecurityConfig extends WebSecurityConfigurerAdapter { 4 …… 5 }
实际访问中,jquery.min.js调用成功,但是后两个js调用失败,提示
Refused to execute script from 'http://localhost:8080/js/common/supersized.3.2.7.min.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
错误。
使用各种方法均解决不了,最后注释掉@EnableWebSecurity注解,调用成功(同时仍然可以使用验证功能)。
具体原因需要进一步调查。