diff --git a/hutool-core/src/main/java/cn/hutool/core/net/RFC3986.java b/hutool-core/src/main/java/cn/hutool/core/net/RFC3986.java index 2c10260a4..d3811b162 100644 --- a/hutool-core/src/main/java/cn/hutool/core/net/RFC3986.java +++ b/hutool-core/src/main/java/cn/hutool/core/net/RFC3986.java @@ -3,8 +3,8 @@ package cn.hutool.core.net; import cn.hutool.core.codec.PercentCodec; /** - * rfc3986 : https://www.ietf.org/rfc/rfc3986.html 编码实现
- * 定义见:https://www.ietf.org/rfc/rfc3986.html#appendix-A + * RFC3986 编码实现
+ * 定义见:https://www.ietf.org/rfc/rfc3986.html#appendix-A * * @author looly * @since 5.7.16 @@ -23,13 +23,13 @@ public class RFC3986 { /** * reserved = gen-delims / sub-delims
- * see:https://www.ietf.org/rfc/rfc3986.html#section-2.2 + * see:https://www.ietf.org/rfc/rfc3986.html#section-2.2 */ public static final PercentCodec RESERVED = GEN_DELIMS.orNew(SUB_DELIMS); /** * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
- * see: https://www.ietf.org/rfc/rfc3986.html#section-2.3 + * see: https://www.ietf.org/rfc/rfc3986.html#section-2.3 */ public static final PercentCodec UNRESERVED = PercentCodec.of(unreservedChars()); @@ -40,7 +40,7 @@ public class RFC3986 { /** * segment = pchar
- * see: https://www.ietf.org/rfc/rfc3986.html#section-3.3 + * see: https://www.ietf.org/rfc/rfc3986.html#section-3.3 */ public static final PercentCodec SEGMENT = PCHAR; /** diff --git a/hutool-extra/src/main/java/cn/hutool/extra/template/engine/jetbrick/loader/package-info.java b/hutool-extra/src/main/java/cn/hutool/extra/template/engine/jetbrick/loader/package-info.java new file mode 100755 index 000000000..5870a7422 --- /dev/null +++ b/hutool-extra/src/main/java/cn/hutool/extra/template/engine/jetbrick/loader/package-info.java @@ -0,0 +1,7 @@ +/** + * jetbrick-template实现,特殊资源加载器
+ * 模板引擎介绍见:https://github.com/subchen/jetbrick-template-2x + * + * @author looly + */ +package cn.hutool.extra.template.engine.jetbrick.loader;