一些需要学习或有用的链接 以及学习中的小记录

仅作个人笔记,没有很多参考价值:

Dandelion : 

  http://dandelion.github.io/components/core/1.1.1/docs/html/#5-3-plugging-in-your-own-asset-locator

  http://dandelion.github.io/components/datatables/1.1.0/docs/html/#11-1-configuration-loading   

在引入这个组件(1.1.0)的时候遇到了一个nullpointerexception,是这个组件本身的bug, 作者在1.1.1对其进行了修复:

<!-- Need to import version 1.1.1 to fix https://github.com/dandelion/dandelion/issues/66 -->  

然后我们在引入dependence需要做些变动:

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>com.sim.template.SimTempleteApplication</start-class>
<java.version>1.8</java.version>
<dandelion.core.version>1.1.1</dandelion.core.version>
<dandelion.datatable.version>1.1.0</dandelion.datatable.version>
</properties>

<dependency>
  <groupId>com.github.dandelion</groupId>
  <artifactId>datatables-thymeleaf</artifactId>
  <version>${dandelion.datatable.version}</version>
  <exclusions>
    <exclusion>
      <groupId>com.github.dandelion</groupId>
      <artifactId>dandelion-core</artifactId>
    </exclusion>
  </exclusions>
</dependency>
<dependency>
  <groupId>com.github.dandelion</groupId>
  <artifactId>datatables-spring3</artifactId>
  <version>${dandelion.datatable.version}</version>
  <exclusions>
    <exclusion>
      <groupId>com.github.dandelion</groupId>
      <artifactId>dandelion-core</artifactId>
    </exclusion>
  </exclusions>
</dependency>
<!-- Need to import version 1.1.1 to fix https://github.com/dandelion/dandelion/issues/66 -->
<dependency>
  <groupId>com.github.dandelion</groupId>
  <artifactId>dandelion-core</artifactId>
  <version>${dandelion.core.version}</version>
</dependency>

你可能感兴趣的:(一些需要学习或有用的链接 以及学习中的小记录)