mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
7.0.0.M1
This commit is contained in:
@@ -53,7 +53,7 @@ public class SpringCglibProxyEngine implements ProxyEngine {
|
||||
|
||||
/**
|
||||
* 创建代理对象<br>
|
||||
* https://gitee.com/dromara/hutool/issues/I74EX7<br>
|
||||
* https://gitee.com/chinabugotech/hutool/issues/I74EX7<br>
|
||||
* 某些对象存在非空参数构造,则需遍历查找需要的构造完成代理对象构建。
|
||||
*
|
||||
* @param <T> 代理对象类型
|
||||
|
@@ -115,7 +115,7 @@ public abstract class AbstractFtp implements Ftp {
|
||||
|
||||
/**
|
||||
* 下载文件-避免未完成的文件<br>
|
||||
* 来自:<a href="https://gitee.com/dromara/hutool/pulls/407">https://gitee.com/dromara/hutool/pulls/407</a><br>
|
||||
* 来自:<a href="https://gitee.com/chinabugotech/hutool/pulls/407">https://gitee.com/chinabugotech/hutool/pulls/407</a><br>
|
||||
* 此方法原理是先在目标文件同级目录下创建临时文件,下载之,等下载完毕后重命名,避免因下载错误导致的文件不完整。
|
||||
*
|
||||
* @param path 文件路径
|
||||
|
@@ -14,5 +14,5 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
cn.hutool.v7.core.spi.ListServiceLoaderTest$TestService2
|
||||
cn.hutool.v7.core.spi.ListServiceLoaderTest$TestService1
|
||||
cn.hutool.v7.extra.aop.engine.spring.SpringCglibProxyEngine
|
||||
cn.hutool.v7.extra.aop.engine.jdk.JdkProxyEngine
|
||||
|
@@ -14,12 +14,14 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
cn.hutool.v7.extra.tokenizer.engine.ansj.AnsjEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.hanlp.HanLPEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.ikanalyzer.IKAnalyzerEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.jcseg.JcsegEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.jieba.JiebaEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.mmseg.MmsegEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.word.WordEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.analysis.SmartcnEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.mynlp.MynlpEngine
|
||||
# 实现:org.dromara.hutool.extra.template.engine.TemplateEngine
|
||||
|
||||
cn.hutool.v7.extra.template.engine.beetl.BeetlEngine
|
||||
cn.hutool.v7.extra.template.engine.freemarker.FreemarkerEngine
|
||||
cn.hutool.v7.extra.template.engine.velocity.VelocityEngine
|
||||
cn.hutool.v7.extra.template.engine.rythm.RythmEngine
|
||||
cn.hutool.v7.extra.template.engine.enjoy.EnjoyEngine
|
||||
cn.hutool.v7.extra.template.engine.thymeleaf.ThymeleafEngine
|
||||
cn.hutool.v7.extra.template.engine.wit.WitEngine
|
||||
cn.hutool.v7.extra.template.engine.jetbrick.JetbrickEngine
|
||||
cn.hutool.v7.extra.template.engine.pebble.PebbleTemplateEngine
|
||||
|
@@ -14,10 +14,12 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
cn.hutool.v7.db.ds.hikari.HikariDSFactory
|
||||
cn.hutool.v7.db.ds.druid.DruidDSFactory
|
||||
cn.hutool.v7.db.ds.tomcat.TomcatDSFactory
|
||||
cn.hutool.v7.db.ds.bee.BeeDSFactory
|
||||
cn.hutool.v7.db.ds.dbcp.DbcpDSFactory
|
||||
cn.hutool.v7.db.ds.c3p0.C3p0DSFactory
|
||||
cn.hutool.v7.db.ds.pooled.PooledDSFactory
|
||||
cn.hutool.v7.extra.tokenizer.engine.ansj.AnsjEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.hanlp.HanLPEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.ikanalyzer.IKAnalyzerEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.jcseg.JcsegEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.jieba.JiebaEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.mmseg.MmsegEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.word.WordEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.analysis.SmartcnEngine
|
||||
cn.hutool.v7.extra.tokenizer.engine.mynlp.MynlpEngine
|
||||
|
@@ -34,7 +34,7 @@ public class IssueI74EX7Test {
|
||||
}
|
||||
|
||||
/**
|
||||
* https://gitee.com/dromara/hutool/issues/I74EX7<br>
|
||||
* https://gitee.com/chinabugotech/hutool/issues/I74EX7<br>
|
||||
* Enhancer.create()默认调用无参构造,有参构造或者多个构造没有很好的兼容。
|
||||
*
|
||||
*/
|
||||
|
@@ -63,7 +63,7 @@ public class ManagementUtilTest {
|
||||
|
||||
@Test
|
||||
public void getUserInfoTest(){
|
||||
// https://gitee.com/dromara/hutool/issues/I3NM39
|
||||
// https://gitee.com/chinabugotech/hutool/issues/I3NM39
|
||||
final UserInfo userInfo = ManagementUtil.getUserInfo();
|
||||
Assertions.assertTrue(userInfo.getTempDir().endsWith(File.separator));
|
||||
}
|
||||
|
@@ -40,7 +40,7 @@ import java.util.*;
|
||||
public class ThymeleafTest {
|
||||
|
||||
/**
|
||||
* <a href="https://github.com/dromara/hutool/issues/2530">...</a>
|
||||
* <a href="https://github.com/chinabugotech/hutool/issues/2530">...</a>
|
||||
* 自定义操作原始引擎
|
||||
*/
|
||||
@Test
|
||||
|
Reference in New Issue
Block a user