1

我正在使用 Spring Boot、thymeleaf 和 webjars 创建一个非常基本的小型 Web 应用程序。

我想要什么:使用 webjars 包含 jquery 和 bootstrap

我做了什么:我将依赖项包含在我的 pom.xml 中

<dependency>
  <groupId>org.webjars</groupId>
  <artifactId>bootstrap</artifactId>
  <version>3.2.0</version>
</dependency>
<dependency>
  <groupId>org.webjars</groupId>
  <artifactId>jquery</artifactId>
  <version>2.1.1</version>
</dependency>

我将 jquery 添加到我的模板 index.html 中:

<script src="/webjars/jquery/2.1.1/jquery.min.js" type="text/javascript"></script>

问题:虽然 thymeleaf 罐子在我的 /lib 目录中,而且对我来说一切看起来都是正确的,但它不起作用。浏览器中显示的 HTML 文件显示了脚本行,但尝试直接获取 jquery 库(在 Chrome 浏览器中单击源)最终会出现 HTTP 406 错误,而路径显示为http://localhost:8080/webjars/jquery/2.1.1/jquery.min.js

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Oct 17 09:34:32 CEST 2014
There was an unexpected error (type=Not Acceptable, status=406).
Could not find acceptable representation
4

1 回答 1

2

你如何配置 WebMVC?

在这里,您可以找到如何在 Spring WebMVC 中使用 webjars 的介绍。

于 2014-10-17T08:20:02.820 回答