Explorar el Código

2.1.6升级

4.1.3.A
jueyue hace 9 años
padre
commit
c692924858
Se han modificado 6 ficheros con 20 adiciones y 8 borrados
  1. +12
    -3
      README.md
  2. +1
    -1
      easypoi-annotation/pom.xml
  3. +1
    -1
      easypoi-base/pom.xml
  4. +3
    -0
      easypoi-base/src/main/java/org/jeecgframework/poi/util/PoiPublicUtil.java
  5. +1
    -1
      easypoi-web/pom.xml
  6. +2
    -2
      pom.xml

+ 12
- 3
README.md Ver fichero

@@ -56,17 +56,17 @@ https://oss.sonatype.org/content/repositories/snapshots/
<dependency>
<groupId>org.jeecg</groupId>
<artifactId>easypoi-base</artifactId>
<version>2.1.5</version>
<version>2.1.6</version>
</dependency>
<dependency>
<groupId>org.jeecg</groupId>
<artifactId>easypoi-web</artifactId>
<version>2.1.5</version>
<version>2.1.6</version>
</dependency>
<dependency>
<groupId>org.jeecg</groupId>
<artifactId>easypoi-annotation</artifactId>
<version>2.1.5</version>
<version>2.1.6</version>
</dependency>
```
@@ -143,6 +143,15 @@ word和sax读取的时候才使用,就不是必须的了,请手动引用
版本修改
--------------------------
- 2.1.6 校验规则不向下兼容,升级请自行考虑
- 其实不想升的,不过有必要的bug要修复,所以就先生上来吧
- 升级交易为hibernate校验,hibernate的maven自己配置可选
- WORD的Excel遍历 的Row,改为Insert Row
- 修复了font的数组越界
- 修复targetId的数组越界
- 修复多行模板导出的bug
- 增加了验证Excel的功能
- 2.1.5 bug修复,建议升级
- fix指定sheetNum导入的bug
- add导入时候setIndex(null) 可以防止识别为集合的问题


+ 1
- 1
easypoi-annotation/pom.xml Ver fichero

@@ -4,7 +4,7 @@
<parent>
<groupId>org.jeecg</groupId>
<artifactId>easypoi</artifactId>
<version>2.1.6-SNAPSHOT</version>
<version>2.1.6</version>
</parent>
<artifactId>easypoi-annotation</artifactId>
<description>基础注解类,解耦合</description>

+ 1
- 1
easypoi-base/pom.xml Ver fichero

@@ -4,7 +4,7 @@
<parent>
<groupId>org.jeecg</groupId>
<artifactId>easypoi</artifactId>
<version>2.1.6-SNAPSHOT</version>
<version>2.1.6</version>
</parent>
<artifactId>easypoi-base</artifactId>
<dependencies>


+ 3
- 0
easypoi-base/src/main/java/org/jeecgframework/poi/util/PoiPublicUtil.java Ver fichero

@@ -448,6 +448,9 @@ public final class PoiPublicUtil {
String[] tempArr;
for (String str : arr) {
tempArr = str.split("_");
if(tempArr == null || tempArr.length < 2){
return defalut;
}
if (targetId.equals(tempArr[1])) {
return tempArr[0];
}


+ 1
- 1
easypoi-web/pom.xml Ver fichero

@@ -4,7 +4,7 @@
<parent>
<groupId>org.jeecg</groupId>
<artifactId>easypoi</artifactId>
<version>2.1.6-SNAPSHOT</version>
<version>2.1.6</version>
</parent>
<artifactId>easypoi-web</artifactId>
<dependencies>


+ 2
- 2
pom.xml Ver fichero

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jeecg</groupId>
<artifactId>easypoi</artifactId>
<version>2.1.6-SNAPSHOT</version>
<version>2.1.6</version>
<packaging>pom</packaging>
<name>easypoi</name>
<modules>
@@ -38,7 +38,7 @@
</developers>
<properties>
<sub.version>2.1.6-SNAPSHOT</sub.version>
<sub.version>2.1.6</sub.version>
<poi.version>3.9</poi.version>
<xerces.version>2.9.1</xerces.version>
<guava.version>16.0.1</guava.version>


Cargando…
Cancelar
Guardar