This commit is contained in:
choweli
2025-04-17 10:55:02 +08:00
parent 22d487624d
commit 038a6ca0c8
123 changed files with 232 additions and 224 deletions

View File

@@ -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> 代理对象类型

View File

@@ -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 文件路径

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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()默认调用无参构造,有参构造或者多个构造没有很好的兼容。
*
*/

View File

@@ -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));
}

View File

@@ -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