如何安装蒲公英数据表

How to install dandelion datatables

我正在尝试安装蒲公英数据table,但我遇到了一些配置问题

按照指南 here 我将以下内容添加到我的 pom

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
</dependency>
<dependency>
    <groupId>com.github.dandelion</groupId>
    <artifactId>datatables-jsp</artifactId>
    <version>1.1.0</version>
</dependency>
<dependency>
    <groupId>com.github.dandelion</groupId>
    <artifactId>datatables-export-itext</artifactId>
    <version>1.1.0</version>
</dependency>

然后我将以下内容添加到我的 web.xml 文件

<!-- Dandelion servlet definition and mapping -->
    <servlet>
        <servlet-name>dandelionServlet</servlet-name>
        <servlet-class>com.github.dandelion.core.web.DandelionServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dandelionServlet</servlet-name>
        <url-pattern>/dandelion-assets/*</url-pattern>
    </servlet-mapping>

<!-- Dandelion filter definition and mapping -->
    <filter>
        <filter-name>dandelionFilter</filter-name>
        <filter-class>com.github.dandelion.core.web.DandelionFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>dandelionFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

我正在从 spring mvc 控制器向我的 jsp 页面提供数据,我在其中放置以下内容

<%@ taglib prefix="datatables" uri="http://github.com/dandelion/datatables" %>

<datatables:table id="myTableId" data="${data}">
    <datatables:column title="ID" property="id" />
</datatables:table>

我正在使用 servlet 3.1(下面的web.xml)

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
         http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    version="3.1">

我的容器是tomcat8

问题

当 table 已填充但无法访问 css 和 js 文件时。 datatable 反而工作正常但没有样式。但是分页有效。

下面生成的某些 link 无法访问。

http://localhost:8080/dtproject/dandelion/datatables/css/jquery.dataTables.css http://localhost:8080/dtproject/dandelion/jquery/js/jquery.js http://localhost:8080/dtproject/dandelion/datatables/js/jquery.dataTables.js

有人可以帮忙吗?

谢谢

更新

为了让引擎从外部 CDN 加载资源,我在 datatables.properties 配置文件中添加了以下行

asset.locations.resolution.strategy = remote,webapp,webjar,classpath,jar

当我 运行 程序时,我得到这个错误:

Dandelion: Some properties of your configuration file are not recognized.
The group 'asset' contains 1 unknown property:

我将 servlet 版本从 3.1 降级到 3.0,现在可以使用了

生活有时很奇怪