add page of sql support

This commit is contained in:
Looly
2020-12-06 07:41:54 +08:00
parent 897dea0b30
commit 36588f7e07
23 changed files with 711 additions and 451 deletions

View File

@@ -26,7 +26,7 @@ public class URLEncoder implements Serializable {
// --------------------------------------------------------------------------------------------- Static method start
/**
* 默认{@link URLEncoder}<br>
* 默认URLEncoder<br>
* 默认的编码器针对URI路径编码定义如下
*
* <pre>
@@ -38,7 +38,7 @@ public class URLEncoder implements Serializable {
public static final URLEncoder DEFAULT = createDefault();
/**
* 用于查询语句的{@link URLEncoder}<br>
* 用于查询语句的URLEncoder<br>
* 编码器针对URI路径编码定义如下
*
* <pre>
@@ -53,7 +53,7 @@ public class URLEncoder implements Serializable {
public static final URLEncoder QUERY = createQuery();
/**
* 全编码的{@link URLEncoder}<br>
* 全编码的URLEncoder<br>
* <pre>
* 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is
* '*', '-', '.', '0' to '9', 'A' to 'Z', '_', 'a' to 'z' 不编码
@@ -63,7 +63,7 @@ public class URLEncoder implements Serializable {
public static final URLEncoder ALL = createAll();
/**
* 创建默认{@link URLEncoder}<br>
* 创建默认URLEncoder<br>
* 默认的编码器针对URI路径编码定义如下
*
* <pre>
@@ -72,7 +72,7 @@ public class URLEncoder implements Serializable {
* sub-delims = "!" / "$" / "&amp;" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "="
* </pre>
*
* @return {@link URLEncoder}
* @return URLEncoder
*/
public static URLEncoder createDefault() {
final URLEncoder encoder = new URLEncoder();
@@ -102,7 +102,7 @@ public class URLEncoder implements Serializable {
}
/**
* 创建用于查询语句的{@link URLEncoder}<br>
* 创建用于查询语句的URLEncoder<br>
* 编码器针对URI路径编码定义如下
*
* <pre>
@@ -114,7 +114,7 @@ public class URLEncoder implements Serializable {
* <p>
* 详细见https://www.w3.org/TR/html5/forms.html#application/x-www-form-urlencoded-encoding-algorithm
*
* @return {@link URLEncoder}
* @return URLEncoder
*/
public static URLEncoder createQuery() {
final URLEncoder encoder = new URLEncoder();
@@ -133,7 +133,7 @@ public class URLEncoder implements Serializable {
}
/**
* 创建{@link URLEncoder}<br>
* 创建URLEncoder<br>
* 编码器针对URI路径编码定义如下
*
* <pre>
@@ -144,7 +144,7 @@ public class URLEncoder implements Serializable {
* <p>
* 详细见https://www.w3.org/TR/html5/forms.html#application/x-www-form-urlencoded-encoding-algorithm
*
* @return {@link URLEncoder}
* @return URLEncoder
*/
public static URLEncoder createAll() {
final URLEncoder encoder = new URLEncoder();