clean history

This commit is contained in:
Looly
2019-08-14 10:02:32 +08:00
commit 6b011af032
1215 changed files with 159913 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# -------------------------------------------------------------
# ----- GroupedSet File with UTF8-----
# @see com.xiaoleilu.hutool.lang.GroupedSet
# -------------------------------------------------------------
无分组值1
无分组值2
[分组1]
值1
值2
值3
[特殊分组]
1
2
3
\#转义注释符
[]
空分组值1
空分组会合并到无分组里
[没有值的分组]

View File

@@ -0,0 +1,20 @@
# -------------------------------------------------------------
# ----- Setting File with UTF8-----
# ----- 数据库配置文件 -----
# -------------------------------------------------------------
# 键值都支持中文默认UTF-8编码可以在new Setting的时候设置编码
key = value
#中括表示一个分组其下面的所有属性归属于这个分组在此分组名为demo也可以没有分组
#分组后的键值对在Setting对象中表现形式是demo.key也可以使用相应的方法取值
[demo]
# 类似于Properties的键值对
key = value
# 支持变量替换在new Setting的时候需要设置isUseVariable为true
key2 = value${key}
#中括号开始表示新的分组开始,分组相互独立,键值与其他分组互不影响
[demo2]
key = value2
key2 = value

View File

@@ -0,0 +1,13 @@
#--------------------------------------
# GroupSet配置文件样例
#每一个分组下有一组set集合
# author xiaoleilu
#--------------------------------------
[group1]
value1
value2
[group2]
value1
value2

View File

@@ -0,0 +1,13 @@
# -------------------------------------------------------------
# ----- Setting File with UTF8-----
# ----- \u6570\u636e\u5e93\u914d\u7f6e\u6587\u4ef6 -----
# -------------------------------------------------------------
#\u6570\u636e\u5e93\u9a71\u52a8\u540d\uff0c\u5982\u679c\u4e0d\u6307\u5b9a\uff0c\u5219\u4f1a\u6839\u636eurl\u81ea\u52a8\u5224\u5b9a
driver = com.mysql.jdbc.Driver
#JDBC url\uff0c\u5fc5\u987b
url = jdbc:mysql://fedora.vmware:3306/extractor
#\u7528\u6237\u540d\uff0c\u5fc5\u987b
user = root
#\u5bc6\u7801\uff0c\u5fc5\u987b\uff0c\u5982\u679c\u5bc6\u7801\u4e3a\u7a7a\uff0c\u8bf7\u586b\u5199 pass =
pass = 123456

View File

@@ -0,0 +1,16 @@
# -------------------------------------------------------------
# ----- Setting File with UTF8-----
# ----- 数据库配置文件 -----
# -------------------------------------------------------------
#中括表示一个分组其下面的所有属性归属于这个分组在此分组名为demo也可以没有分组
[demo]
#数据库驱动名如果不指定则会根据url自动判定
driver = com.mysql.jdbc.Driver
#JDBC url必须
url = jdbc:mysql://fedora.vmware:3306/extractor
#用户名,必须
user = root${driver}
user2 = root${demo.driver}
#密码,必须,如果密码为空,请填写 pass =
pass = 123456