Browse Source

Merge pull request #325 in CORE/base-third from ~ZHOUPING/base-third:research/10.0 to research/10.0

* commit '883b0bf65760b1cbc964dabee1ccf954efe8f621':
  KERNEL-1328 fine-poi支持JDK11以及其他的编译问题一并修改了
research/10.0
zhouping 5 years ago
parent
commit
31651af9e0
  1. 16
      fine-jedis/src/com/fr/third/org/apache/commons/pool2/impl/package.html
  2. 12
      fine-jedis/src/com/fr/third/org/apache/commons/pool2/overview.html
  3. 2
      fine-poi/src/com/fr/third/v2/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
  4. 2
      fine-poi/src/com/fr/third/v2/org/apache/poi/util/HexDump.java
  5. 3
      fine-poi/src/com/fr/third/v2/org/apache/poi/util/OOXMLLite.java
  6. 2
      fine-poi/src/com/fr/third/v2/org/apache/poi/xssf/extractor/XSSFImportFromXML.java
  7. 6
      fine-spring/src/com/fr/third/springframework/aop/target/CommonsPoolTargetSource.java

16
fine-jedis/src/com/fr/third/org/apache/commons/pool2/impl/package.html

@ -17,26 +17,26 @@
<!-- $Id$ --> <!-- $Id$ -->
<html> <html>
<head> <head>
<title>Package Documentation for org.apache.commons.pool2.impl</title> <title>Package Documentation for com.fr.third.org.apache.commons.pool2.impl</title>
</head> </head>
<body> <body>
<p> <p>
Object pooling API implementations. Object pooling API implementations.
</p> </p>
<p> <p>
{@link org.apache.commons.pool2.impl.GenericObjectPool GenericObjectPool} {@link com.fr.third.org.apache.commons.pool2.impl.GenericObjectPool GenericObjectPool}
({@link org.apache.commons.pool2.impl.GenericKeyedObjectPool GenericKeyedObjectPool}) ({@link com.fr.third.org.apache.commons.pool2.impl.GenericKeyedObjectPool GenericKeyedObjectPool})
provides a more robust (but also more complicated) provides a more robust (but also more complicated)
implementation of {@link org.apache.commons.pool2.ObjectPool ObjectPool} implementation of {@link com.fr.third.org.apache.commons.pool2.ObjectPool ObjectPool}
({@link org.apache.commons.pool2.KeyedObjectPool KeyedObjectPool}). ({@link com.fr.third.org.apache.commons.pool2.KeyedObjectPool KeyedObjectPool}).
</p> </p>
<p> <p>
{@link org.apache.commons.pool2.impl.SoftReferenceObjectPool SoftReferenceObjectPool} {@link com.fr.third.org.apache.commons.pool2.impl.SoftReferenceObjectPool SoftReferenceObjectPool}
provides a {@link java.lang.ref.SoftReference SoftReference} based provides a {@link java.lang.ref.SoftReference SoftReference} based
{@link org.apache.commons.pool2.ObjectPool ObjectPool}. {@link com.fr.third.org.apache.commons.pool2.ObjectPool ObjectPool}.
</p> </p>
<p> <p>
See also the {@link org.apache.commons.pool2} package. See also the {@link com.fr.third.org.apache.commons.pool2} package.
</p> </p>
</body> </body>
</html> </html>

12
fine-jedis/src/com/fr/third/org/apache/commons/pool2/overview.html

@ -17,14 +17,14 @@
<!-- $Id$ --> <!-- $Id$ -->
<html> <html>
<head> <head>
<title>Overview of the org.apache.commons.pool2 component</title> <title>Overview of the com.fr.third.org.apache.commons.pool2 component</title>
</head> </head>
<body> <body>
<p> <p>
Generic Object pooling API with several implementations. Generic Object pooling API with several implementations.
</p> </p>
<p> <p>
The <code>org.apache.commons.pool2</code> package defines a simple The <code>com.fr.third.org.apache.commons.pool2</code> package defines a simple
interface for a pool of object instances, and a handful of base interface for a pool of object instances, and a handful of base
classes that may be useful when creating pool implementations. classes that may be useful when creating pool implementations.
The API supports pooling of unique objects which can be requested The API supports pooling of unique objects which can be requested
@ -33,17 +33,17 @@
<p> <p>
The <code>org.apache.commons.pool2.impl</code> package contains The <code>org.apache.commons.pool2.impl</code> package contains
several pool implementations. several pool implementations.
{@link org.apache.commons.pool2.impl.GenericObjectPool {@link com.fr.third.org.apache.commons.pool2.impl.GenericObjectPool
GenericObjectPool} has many configuration options and can support GenericObjectPool} has many configuration options and can support
a limited set of objects such as would be useful in a database a limited set of objects such as would be useful in a database
connection pool. connection pool.
{@link org.apache.commons.pool2.impl.SoftReferenceObjectPool {@link com.fr.third.org.apache.commons.pool2.impl.SoftReferenceObjectPool
SoftReferenceObjectPool} has no limit on the number of objects in the SoftReferenceObjectPool} has no limit on the number of objects in the
pool, but the garbage collector can remove idle objects from the pool pool, but the garbage collector can remove idle objects from the pool
as needed. There is also a keyed version of as needed. There is also a keyed version of
{@link org.apache.commons.pool2.impl.GenericObjectPool {@link com.fr.third.org.apache.commons.pool2.impl.GenericObjectPool
GenericObjectPool}, GenericObjectPool},
{@link org.apache.commons.pool2.impl.GenericKeyedObjectPool {@link com.fr.third.org.apache.commons.pool2.impl.GenericKeyedObjectPool
GenericKeyedObjectPool} GenericKeyedObjectPool}
</p> </p>
</body> </body>

2
fine-poi/src/com/fr/third/v2/org/apache/poi/hssf/usermodel/HSSFWorkbook.java

@ -39,7 +39,7 @@ import java.util.Map;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import org.apache.commons.codec.digest.DigestUtils; import com.fr.third.org.apache.commons.codec.digest.DigestUtils;
import com.fr.third.v2.org.apache.poi.EncryptedDocumentException; import com.fr.third.v2.org.apache.poi.EncryptedDocumentException;
import com.fr.third.v2.org.apache.poi.POIDocument; import com.fr.third.v2.org.apache.poi.POIDocument;
import com.fr.third.v2.org.apache.poi.ddf.EscherBSERecord; import com.fr.third.v2.org.apache.poi.ddf.EscherBSERecord;

2
fine-poi/src/com/fr/third/v2/org/apache/poi/util/HexDump.java

@ -29,7 +29,7 @@ import java.io.PrintStream;
import java.nio.charset.Charset; import java.nio.charset.Charset;
import java.util.Locale; import java.util.Locale;
import org.apache.commons.codec.CharEncoding; import com.fr.third.org.apache.commons.codec.CharEncoding;
/** /**
* dump data in hexadecimal format * dump data in hexadecimal format

3
fine-poi/src/com/fr/third/v2/org/apache/poi/util/OOXMLLite.java

@ -43,7 +43,8 @@ import junit.framework.TestCase;
import org.junit.Test; import org.junit.Test;
import org.junit.internal.TextListener; import org.junit.internal.TextListener;
import org.junit.runner.JUnitCore;import org.junit.runner.Result; import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
/** /**
* Build a 'lite' version of the ooxml-schemas.jar * Build a 'lite' version of the ooxml-schemas.jar

2
fine-poi/src/com/fr/third/v2/org/apache/poi/xssf/extractor/XSSFImportFromXML.java

@ -293,7 +293,7 @@ public class XSSFImportFromXML {
// Dummy implementation - not used! // Dummy implementation - not used!
@Override @Override
public Iterator<?> getPrefixes(String val) { public Iterator<String> getPrefixes(String val) {
return null; return null;
} }

6
fine-spring/src/com/fr/third/springframework/aop/target/CommonsPoolTargetSource.java

@ -16,9 +16,9 @@
package com.fr.third.springframework.aop.target; package com.fr.third.springframework.aop.target;
import org.apache.commons.pool.ObjectPool; import com.fr.third.org.apache.commons.pool.ObjectPool;
import org.apache.commons.pool.PoolableObjectFactory; import com.fr.third.org.apache.commons.pool.PoolableObjectFactory;
import org.apache.commons.pool.impl.GenericObjectPool; import com.fr.third.org.apache.commons.pool.impl.GenericObjectPool;
import com.fr.third.springframework.beans.BeansException; import com.fr.third.springframework.beans.BeansException;
import com.fr.third.springframework.core.Constants; import com.fr.third.springframework.core.Constants;

Loading…
Cancel
Save