remove .idea and target
This commit is contained in:
Carol 2021-09-30 11:14:32 +08:00
parent 02f89ae360
commit 355d9bbd16
50 changed files with 0 additions and 2262 deletions

View File

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4" />

View File

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CheckStyle-IDEA">
<option name="configuration">
<map>
<entry key="checkstyle-version" value="8.45" />
<entry key="copy-libs" value="true" />
<entry key="location-0" value="BUNDLED:(bundled):Sun Checks" />
<entry key="location-1" value="BUNDLED:(bundled):Google Checks" />
<entry key="scan-before-checkin" value="false" />
<entry key="scanscope" value="JavaOnly" />
<entry key="suppress-errors" value="false" />
</map>
</option>
</component>
</project>

View File

@ -1,5 +0,0 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile default="true" name="Default" enabled="true" />
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="CommonUtil" />
</profile>
</annotationProcessing>
</component>
<component name="JavacSettings">
<option name="ADDITIONAL_OPTIONS_OVERRIDE">
<module name="CommonUtil" options="-parameters" />
</option>
</component>
</project>

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" native2AsciiForPropertiesFiles="true" defaultCharsetForPropertiesFiles="UTF-8">
<file url="file://$PROJECT_DIR$" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
<file url="PROJECT" charset="UTF-8" />
</component>
</project>

View File

@ -1,204 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaDocConfiguration">
<GENERAL>
<MODE>UPDATE</MODE>
<OVERRIDDEN_METHODS>false</OVERRIDDEN_METHODS>
<SPLITTED_CLASS_NAME>true</SPLITTED_CLASS_NAME>
<LEVELS>
<LEVEL>METHOD</LEVEL>
<LEVEL>FIELD</LEVEL>
<LEVEL>TYPE</LEVEL>
</LEVELS>
<VISIBILITIES>
<VISIBILITY>PROTECTED</VISIBILITY>
<VISIBILITY>DEFAULT</VISIBILITY>
<VISIBILITY>PUBLIC</VISIBILITY>
</VISIBILITIES>
</GENERAL>
<TEMPLATES>
<CLASSES>
<CLASS>
<KEY>^.*(public|protected|private)*.+interface\s+\w+.*</KEY>
<VALUE>/**\n
* The interface ${name}.\n
&lt;#if element.typeParameters?has_content&gt; * \n
&lt;/#if&gt;
&lt;#list element.typeParameters as typeParameter&gt;
* @param &lt;${typeParameter.name}&gt; the type parameter\n
&lt;/#list&gt;
*/</VALUE>
</CLASS>
<CLASS>
<KEY>^.*(public|protected|private)*.+enum\s+\w+.*</KEY>
<VALUE>/**\n
* The enum ${name}.\n
*/</VALUE>
</CLASS>
<CLASS>
<KEY>^.*(public|protected|private)*.+class\s+\w+.*</KEY>
<VALUE>/**\n
* The type ${name}.\n
&lt;#if element.typeParameters?has_content&gt; * \n
&lt;/#if&gt;
&lt;#list element.typeParameters as typeParameter&gt;
* @param &lt;${typeParameter.name}&gt; the type parameter\n
&lt;/#list&gt;
*/</VALUE>
</CLASS>
<CLASS>
<KEY>.+</KEY>
<VALUE>/**\n
* The type ${name}.\n
*/</VALUE>
</CLASS>
</CLASSES>
<CONSTRUCTORS>
<CONSTRUCTOR>
<KEY>.+</KEY>
<VALUE>/**\n
* Instantiates a new ${name}.\n
&lt;#if element.parameterList.parameters?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.parameterList.parameters as parameter&gt;
* @param ${parameter.name} the ${paramNames[parameter.name]}\n
&lt;/#list&gt;
&lt;#if element.throwsList.referenceElements?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.throwsList.referenceElements as exception&gt;
* @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n
&lt;/#list&gt;
*/</VALUE>
</CONSTRUCTOR>
</CONSTRUCTORS>
<METHODS>
<METHOD>
<KEY>^.*(public|protected|private)*\s*.*(\w(\s*&lt;.+&gt;)*)+\s+get\w+\s*\(.*\).+</KEY>
<VALUE>/**\n
* Gets ${partName}.\n
&lt;#if element.typeParameters?has_content&gt; * \n
&lt;/#if&gt;
&lt;#list element.typeParameters as typeParameter&gt;
* @param &lt;${typeParameter.name}&gt; the type parameter\n
&lt;/#list&gt;
&lt;#if element.parameterList.parameters?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.parameterList.parameters as parameter&gt;
* @param ${parameter.name} the ${paramNames[parameter.name]}\n
&lt;/#list&gt;
&lt;#if isNotVoid&gt;
*\n
* @return the ${partName}\n
&lt;/#if&gt;
&lt;#if element.throwsList.referenceElements?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.throwsList.referenceElements as exception&gt;
* @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n
&lt;/#list&gt;
*/</VALUE>
</METHOD>
<METHOD>
<KEY>^.*(public|protected|private)*\s*.*(void|\w(\s*&lt;.+&gt;)*)+\s+set\w+\s*\(.*\).+</KEY>
<VALUE>/**\n
* Sets ${partName}.\n
&lt;#if element.typeParameters?has_content&gt; * \n
&lt;/#if&gt;
&lt;#list element.typeParameters as typeParameter&gt;
* @param &lt;${typeParameter.name}&gt; the type parameter\n
&lt;/#list&gt;
&lt;#if element.parameterList.parameters?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.parameterList.parameters as parameter&gt;
* @param ${parameter.name} the ${paramNames[parameter.name]}\n
&lt;/#list&gt;
&lt;#if isNotVoid&gt;
*\n
* @return the ${partName}\n
&lt;/#if&gt;
&lt;#if element.throwsList.referenceElements?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.throwsList.referenceElements as exception&gt;
* @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n
&lt;/#list&gt;
*/</VALUE>
</METHOD>
<METHOD>
<KEY>^.*((public\s+static)|(static\s+public))\s+void\s+main\s*\(\s*String\s*(\[\s*\]|\.\.\.)\s+\w+\s*\).+</KEY>
<VALUE>/**\n
* The entry point of application.\n
&lt;#if element.parameterList.parameters?has_content&gt;
*\n
&lt;/#if&gt;
* @param ${element.parameterList.parameters[0].name} the input arguments\n
&lt;#if element.throwsList.referenceElements?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.throwsList.referenceElements as exception&gt;
* @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n
&lt;/#list&gt;
*/</VALUE>
</METHOD>
<METHOD>
<KEY>.+</KEY>
<VALUE>/**\n
* ${name}&lt;#if isNotVoid&gt; ${return}&lt;/#if&gt;.\n
&lt;#if element.typeParameters?has_content&gt; * \n
&lt;/#if&gt;
&lt;#list element.typeParameters as typeParameter&gt;
* @param &lt;${typeParameter.name}&gt; the type parameter\n
&lt;/#list&gt;
&lt;#if element.parameterList.parameters?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.parameterList.parameters as parameter&gt;
* @param ${parameter.name} the ${paramNames[parameter.name]}\n
&lt;/#list&gt;
&lt;#if isNotVoid&gt;
*\n
* @return the ${return}\n
&lt;/#if&gt;
&lt;#if element.throwsList.referenceElements?has_content&gt;
*\n
&lt;/#if&gt;
&lt;#list element.throwsList.referenceElements as exception&gt;
* @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n
&lt;/#list&gt;
*/</VALUE>
</METHOD>
</METHODS>
<FIELDS>
<FIELD>
<KEY>^.*(public|protected|private)*.+static.*(\w\s\w)+.+</KEY>
<VALUE>/**\n
* The constant ${element.getName()}.\n
*/</VALUE>
</FIELD>
<FIELD>
<KEY>^.*(public|protected|private)*.*(\w\s\w)+.+</KEY>
<VALUE>/**\n
&lt;#if element.parent.isInterface()&gt;
* The constant ${element.getName()}.\n
&lt;#else&gt;
* The ${name}.\n
&lt;/#if&gt; */</VALUE>
</FIELD>
<FIELD>
<KEY>.+</KEY>
<VALUE>/**\n
&lt;#if element.parent.isEnum()&gt;
*${name} ${typeName}.\n
&lt;#else&gt;
* The ${name}.\n
&lt;/#if&gt;*/</VALUE>
</FIELD>
</FIELDS>
</TEMPLATES>
</component>
</project>

View File

@ -1,50 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RemoteRepositoriesConfiguration">
<remote-repository>
<option name="id" value="spring" />
<option name="name" value="spring" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Central Repository" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Maven Central repository" />
<option name="url" value="https://repo1.maven.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="jboss.community" />
<option name="name" value="JBoss Community repository" />
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="central" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
<remote-repository>
<option name="id" value="apache" />
<option name="name" value="apache" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
<remote-repository>
<option name="id" value="LocalMirrorId" />
<option name="name" value="LocalMirrorId" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
<remote-repository>
<option name="id" value="central-repos" />
<option name="name" value="Central Repository" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
<remote-repository>
<option name="id" value="alimaven" />
<option name="name" value="aliyun maven" />
<option name="url" value="http://10.1.15.172:8080/nexus/content/groups/public" />
</remote-repository>
</component>
</project>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
</set>
</option>
</component>
</project>

View File

@ -1,3 +0,0 @@
\
java:S1118":Add a private constructor to hide the implicit public one.(<28>ʁ<EFBFBD><CA81><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,48 +0,0 @@
b java:S1128"FDefine and throw a dedicated exception instead of using a generic one.(<28>ʉ<EFBFBD>8ᆋ<38>/
c java:S112<18>"FDefine and throw a dedicated exception instead of using a generic one.(<28><><EFBFBD><EFBFBD>8↋<38>/
L
java:S3740"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8↋<38>/
L
java:S3740"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8ㆋ<38>/
L
java:S3740>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8ㆋ<38>/
L
java:S3740>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8ㆋ<38>/
L
java:S3740Y"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8ㆋ<38>/
L
java:S3740\"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8ㆋ<38>/
L
java:S3740w"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8ㆋ<38>/
R
java:S3740<18>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8䆋<38>/
M
java:S3740<18>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8䆋<38>/
M
java:S3740<18>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8䆋<38>/
R
java:S3740<18>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8䆋<38>/
\
java:S1118":Add a private constructor to hide the implicit public one.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8醋<38>/
o
java:S3776"RRefactor this method to reduce its Cognitive Complexity from 30 to the 15 allowed.(<28><><EFBFBD>8ꆋ<38>/
Q
java:S2864"4Iterate over the "entrySet" instead of the "keySet".(<28><><EFBFBD><EFBFBD><38><C987>/
o
java:S37768"RRefactor this method to reduce its Cognitive Complexity from 16 to the 15 allowed.(<28>ʉ<EFBFBD>8臋<38>/
<EFBFBD>
java:S11308"lRemove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body.(<28>ʉ<EFBFBD>8釋<38>/
e
java:S53619"HReplace this call to "replaceAll()" by a call to the "replace()" method.(<28>DŽ<EFBFBD>8<><38><EFBFBD><EFBFBD>/
V
java:S2864:"4Iterate over the "entrySet" instead of the "keySet".(Ĩ<><C4A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
j
java:S5361A"HReplace this call to "replaceAll()" by a call to the "replace()" method.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
j
java:S5361K"HReplace this call to "replaceAll()" by a call to the "replace()" method.(<28>ҩ<EFBFBD><D2A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><38><C588>/
] java:S125a"<This block of commented-out lines of code should be removed.(ו<><D795><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><38><D388>/
p
java:S3776<18>"RRefactor this method to reduce its Cognitive Complexity from 18 to the 15 allowed.(<28><><EFBFBD><EFBFBD><38><D888>/
<EFBFBD>
java:S1130<18>"lRemove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body.(<28><><EFBFBD><EFBFBD><38><D988>/

View File

@ -1,3 +0,0 @@
h
java:S3252"FUse static access with "com.alibaba.fastjson.JSON" for "toJSONString".(<28><>֝<EFBFBD><D69D><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,21 +0,0 @@
\
java:S1118":Add a private constructor to hide the implicit public one.(<28>Ο<EFBFBD><CE9F><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
o
java:S3776"RRefactor this method to reduce its Cognitive Complexity from 18 to the 15 allowed.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
S
java:S26925"10 is a valid index, but is ignored by this check.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
O
java:S1905s"3Remove this unnecessary cast to "NetworkInterface".(<28><><EFBFBD>@8<><38><EFBFBD><EFBFBD>/
P
java:S1905v".Remove this unnecessary cast to "InetAddress".(<28>̳<EFBFBD><CCB3><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
^
java:S3457{"AFormat specifiers should be used instead of string concatenation.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
j
java:S1192"HDefine a constant instead of duplicating this literal "unknown" 3 times.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
Q
java:S10665"/Merge this if statement with the enclosing one.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
q
java:S1104"TMake hostName a static final constant or non-public and provide accessors if needed.(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/
K
java:S1444".Make this "public static hostName" field final(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,12 +0,0 @@
g java:S112"FDefine and throw a dedicated exception instead of using a generic one.(<28><>Ş<EFBFBD><C59E><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>Ɏ/
<EFBFBD>
java:S1130"lRemove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body.(<28><>Ş<EFBFBD><C59E><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>Ɏ/
P
java:S2864."4Iterate over the "entrySet" instead of the "keySet".(<28><><EFBFBD>q8<71><38><EFBFBD>Ɏ/
<EFBFBD>
java:S1319"mThe return type of this method should be an interface such as "Map" rather than the implementation "HashMap".(<28>ةH8<48><38><EFBFBD>Ɏ/
<EFBFBD>
java:S1319$"kThe type of the "uri" object should be an interface such as "Map" rather than the implementation "HashMap".(إ<><D8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>Ɏ/
k
java:S20951"IUse try-with-resources or close this "MongoClient" in a "finally" clause.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>Ɏ/

View File

@ -1,86 +0,0 @@
R
java:S1133"5Do not forget to remove this deprecated code someday.(<28>и<EFBFBD>8<><38><EFBFBD>/
E
java:S1123"(Add the missing @deprecated Javadoc tag.(<28>и<EFBFBD>8<><38><EFBFBD>/
W
java:S1118":Add a private constructor to hide the implicit public one.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
\
java:S1118"":Add a private constructor to hide the implicit public one.(ꁰ<><EA81B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
\
java:S11181":Add a private constructor to hide the implicit public one.(<28>خ<EFBFBD><D8AE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
u java:S115;"ZRename this constant name to match the regular expression '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'.(<28><><EFBFBD>M8<4D><38><EFBFBD>/
v java:S115<"ZRename this constant name to match the regular expression '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
W
java:S1118:":Add a private constructor to hide the implicit public one.(<28><><EFBFBD>8<><38><EFBFBD>/
h
java:S3252_"FUse static access with "com.alibaba.fastjson.JSON" for "toJSONString".(<28><>֝<EFBFBD><D69D><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
D
java:S1172<18>"&Remove these unused method parameters.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
n java:S128<18>"LEnd this switch case with an unconditional break, return or throw statement.(ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
i java:S128<18>"LEnd this switch case with an unconditional break, return or throw statement.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
i java:S128<18>"LEnd this switch case with an unconditional break, return or throw statement.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
X java:S107s"=Method has 13 parameters, which is greater than 7 authorized.(<28><><EFBFBD>@8<><38><EFBFBD><EFBFBD>/
Z java:S107<18>"=Method has 14 parameters, which is greater than 7 authorized.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
B
java:S2629<18>"$Invoke method(s) only conditionally.(Ψ<><CEA8>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(ò<><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(ò<><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
B
java:S2629<18>"$Invoke method(s) only conditionally.(Ψ<><CEA8>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(<28><>Ǐ<EFBFBD><C78F><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
B
java:S2629<18>"$Invoke method(s) only conditionally.(Ψ<><CEA8>8<><38><EFBFBD><EFBFBD>/
B
java:S2629<18>"$Invoke method(s) only conditionally.(Ψ<><CEA8>8<><38><EFBFBD><EFBFBD>/
B
java:S2629<18>"$Invoke method(s) only conditionally.(Ψ<><CEA8>8<><38><EFBFBD><EFBFBD>/
B
java:S2629<18>"$Invoke method(s) only conditionally.(Ψ<><CEA8>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(ò<><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(ò<><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(ò<><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
G
java:S2629<18>"$Invoke method(s) only conditionally.(ò<><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,29 +0,0 @@
b java:S112^"FDefine and throw a dedicated exception instead of using a generic one.(<28><><EFBFBD>8<>Є<EFBFBD>/
q
java:S3008"TRename this field "S_DES_KEY" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><>ؓ8<>Є<EFBFBD>/
<EFBFBD>
java:S1149{"_Replace the synchronized class "StringBuffer" by an unsynchronized one such as "StringBuilder".(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>Є<EFBFBD>/
}
java:S1149<18>"_Replace the synchronized class "StringBuffer" by an unsynchronized one such as "StringBuilder".(׍<><D78D>8<>Є<EFBFBD>/
W
java:S1118":Add a private constructor to hide the implicit public one.(ټ<><D9BC>8<>Є<EFBFBD>/
g
java:S1124"EReorder the modifiers to comply with the Java Language Specification.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>Є<EFBFBD>/
g
java:S1124"EReorder the modifiers to comply with the Java Language Specification.(<28>۳<EFBFBD><DBB3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>Є<EFBFBD>/
g
java:S1124"EReorder the modifiers to comply with the Java Language Specification.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>Є<EFBFBD>/
[
java:S47192"9Replace charset name argument with StandardCharsets.UTF_8(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>Є<EFBFBD>/
V
java:S4719A"9Replace charset name argument with StandardCharsets.UTF_8(ѥ<><D1A5>8<>Є<EFBFBD>/
@
java:S5542h"#Use secure mode and padding scheme.(<28><>ˋ8<>ф<EFBFBD>/
;
java:S5547h"Use a strong cipher algorithm.(<28><>ˋ8<>ф<EFBFBD>/
] java:S125j"<This block of commented-out lines of code should be removed.(<28><>ݔ<EFBFBD><DD94><EFBFBD><EFBFBD><EFBFBD>8<>ф<EFBFBD>/
r
java:S1104"UMake S_DES_KEY a static final constant or non-public and provide accessors if needed.(<28><>ؓ8<>҄<EFBFBD>/
L
java:S1444"/Make this "public static S_DES_KEY" field final(<28><>ؓ8<>҄<EFBFBD>/

View File

@ -1,11 +0,0 @@
W
java:S1133"5Do not forget to remove this deprecated code someday.(<28><>ݭ<EFBFBD><DDAD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
J
java:S1123"(Add the missing @deprecated Javadoc tag.(<28><>ݭ<EFBFBD><DDAD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
\
java:S1118":Add a private constructor to hide the implicit public one.(<28><>ݭ<EFBFBD><DDAD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
R
java:S1133"5Do not forget to remove this deprecated code someday.(ױ<><D7B1>8<><38><EFBFBD><EFBFBD>/
W
java:S1118":Add a private constructor to hide the implicit public one.(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,8 +0,0 @@
g java:S1125"FDefine and throw a dedicated exception instead of using a generic one.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
W
java:S1118":Add a private constructor to hide the implicit public one.(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/
z
java:S1104"XMake objectMapper a static final constant or non-public and provide accessors if needed.(ʳ՜<CAB3><D59C><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
T
java:S1444"2Make this "public static objectMapper" field final(ʳ՜<CAB3><D59C><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,29 +0,0 @@
b java:S112~"FDefine and throw a dedicated exception instead of using a generic one.(<28><><EFBFBD>8䞆<38>/
L
java:S3740"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8垆<38>/
L
java:S3740"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8垆<38>/
}
java:S1149<18>"_Replace the synchronized class "StringBuffer" by an unsynchronized one such as "StringBuilder".(<28>Λ<EFBFBD>8<><38><EFBFBD><EFBFBD>/
\
java:S1118":Add a private constructor to hide the implicit public one.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
=
java:S2129&" Remove this "String" constructor(<28><><EFBFBD><EFBFBD><38><D19F>/
t
java:S3776U"RRefactor this method to reduce its Cognitive Complexity from 21 to the 15 allowed.(<28>܉<EFBFBD><DC89><EFBFBD><EFBFBD><EFBFBD><EFBFBD><38><DC9F>/
<EFBFBD>
java:S1130~"lRemove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body.(<28><><EFBFBD>8⟆<38>/
K
java:S4425<18>"(Use String.format( "%02X", ...) instead.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<38>/
p java:S100<18>"NRename this method name to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
<EFBFBD>
java:S1319~"mThe return type of this method should be an interface such as "Set" rather than the implementation "HashSet".(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/
W
java:S1141]"5Extract this nested try block into a separate method.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
>
java:S1643*"Use a StringBuilder instead.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
>
java:S1643,"Use a StringBuilder instead.(͒<><CD92><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
S
java:S1153*"1Directly append the argument of String.valueOf().(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,9 +0,0 @@
z java:S116"[Rename this field "sniffer_interval" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28>ԋ<EFBFBD><D48B><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>ѪɎ/
` java:S112"FDefine and throw a dedicated exception instead of using a generic one.(Ʋ<><C6B2>8<>ѪɎ/
w java:S116"XRename this field "failure_delay" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<>ѪɎ/
C
java:S1604"(Make this anonymous inner class a lambda(<28>8<>ѪɎ/
v java:S116"\Rename this field "max_retry_timeout" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD>8<>ѪɎ/
<EFBFBD>
java:S1130"lRemove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body.(Ʋ<><C6B2>8<>ѪɎ/

View File

@ -1,77 +0,0 @@
c java:S112<18>"FDefine and throw a dedicated exception instead of using a generic one.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
h java:S112<18>"FDefine and throw a dedicated exception instead of using a generic one.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
Q
java:S3740q"/Provide the parametrized type for this generic.(<28>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
Q
java:S3740r"/Provide the parametrized type for this generic.(<28>٬<EFBFBD><D9AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
Q
java:S3740r"/Provide the parametrized type for this generic.(<28>٬<EFBFBD><D9AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
M
java:S3740<18>"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
\
java:S1118":Add a private constructor to hide the implicit public one.(<28>۟<EFBFBD><DB9F><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
[
java:S4719;"9Replace charset name argument with StandardCharsets.UTF_8(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
V
java:S4719J"9Replace charset name argument with StandardCharsets.UTF_8(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/
B
java:S2129s" Remove this "String" constructor(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<38>/
h
java:S3252<18>"EUse static access with "com.alibaba.fastjson.JSON" for "parseObject".(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38>/
O
java:S1602<18>",Remove useless curly braces around statement(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
u
java:S3776<18>"RRefactor this method to reduce its Cognitive Complexity from 16 to the 15 allowed.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
X
java:S1133<18>"5Do not forget to remove this deprecated code someday.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
K
java:S1123<18>"(Add the missing @deprecated Javadoc tag.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
C
java:S2129<18>" Remove this "String" constructor(<28><>Ŷ<EFBFBD><C5B6><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
C
java:S2129<18>" Remove this "String" constructor(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
\
java:S4719<18>"9Replace charset name argument with StandardCharsets.UTF_8(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
[ java:S106<18>"9Replace this use of System.out or System.err by a logger.(񗸽<><F197B8BD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
I
java:S1075<18>"&Remove this hard-coded path-delimiter.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
u
java:S3776<18>"RRefactor this method to reduce its Cognitive Complexity from 49 to the 15 allowed.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
X
java:S1133<18>"5Do not forget to remove this deprecated code someday.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
K
java:S1123<18>"(Add the missing @deprecated Javadoc tag.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
\
java:S4719<18>"9Replace charset name argument with StandardCharsets.UTF_8(諅<><E8AB85><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
\
java:S4719<18>"9Replace charset name argument with StandardCharsets.UTF_8(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
W
java:S4719<18>"9Replace charset name argument with StandardCharsets.UTF_8(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
W
java:S4719<18>"9Replace charset name argument with StandardCharsets.UTF_8(<28><EFBFBD>8<><38><EFBFBD><EFBFBD>/
d java:S899<18>"BDo something with the "boolean" value returned by "createNewFile".(А<><D090><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><38><D88F>/
o
java:S1192<18>"LDefine a constant instead of duplicating this literal ".properties" 4 times.(<28><>ٰ<EFBFBD><D9B0><EFBFBD><EFBFBD><EFBFBD>8㏁<38>/
h
java:S1192;"FDefine a constant instead of duplicating this literal "UTF-8" 7 times.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8䏁<38>/
u
java:S1192<18>"WDefine a constant instead of duplicating this literal "spring.profiles.active" 5 times.(<28><><EFBFBD>8䏁<38>/
u
java:S1192<18>"WDefine a constant instead of duplicating this literal "application.properties" 3 times.(<28><>ۘ8䏁<38>/
s java:S117<18>"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8珁<38>/
s java:S117<18>"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8珁<38>/
`
java:S1155H">Use isEmpty() to check whether the collection is empty or not.(<28>Ȅ<EFBFBD><C884><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8珁<38>/
\
java:S4973<18>"9Use the "equals" method if value comparison was intended.(<28><>ٰ<EFBFBD><D9B0><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
k
java:S2095w"NUse try-with-resources or close this "LineNumberReader" in a "finally" clause.(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/
k
java:S2095e"NUse try-with-resources or close this "LineNumberReader" in a "finally" clause.(<28><><EFBFBD>8<><38><EFBFBD><EFBFBD>/
e
java:S2095d"HUse try-with-resources or close this "FileReader" in a "finally" clause.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
e
java:S2095v"HUse try-with-resources or close this "FileReader" in a "finally" clause.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
V
java:S2589<18>"8Remove this expression which always evaluates to "false"(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,61 +0,0 @@
R
java:S3740<18>"/Provide the parametrized type for this generic.(<28><>˴<EFBFBD><CBB4><EFBFBD><EFBFBD><EFBFBD>8<>ـ<EFBFBD>/
M
java:S3740<18>"/Provide the parametrized type for this generic.(<28><><EFBFBD>8<>ـ<EFBFBD>/
J
java:S2447{"-Null is returned but a "Boolean" is expected.(<28><><EFBFBD>8<>ڀ<EFBFBD>/
K
java:S2447<18>"-Null is returned but a "Boolean" is expected.(<28><><EFBFBD>8<>܀<EFBFBD>/
K
java:S2447<18>"-Null is returned but a "Boolean" is expected.(<28><><EFBFBD>8<>߀<EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<>߀<EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<>߀<EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<>߀<EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<><38><EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<><38><EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<><38><EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<><38><EFBFBD>/
v
java:S2293<18>"YReplace the type specification in this constructor call with the diamond operator ("<>").(<28><><EFBFBD>I8<49><38><EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<><38><EFBFBD>/
v
java:S2293<18>"YReplace the type specification in this constructor call with the diamond operator ("<>").(<28><><EFBFBD>I8<49><38><EFBFBD>/
I
java:S1168<18>"+Return an empty collection instead of null.(<28><><EFBFBD>8<><38><EFBFBD>/
8
java:S3457<18>"Not enough arguments.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
8
java:S3457<18>"Not enough arguments.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
<EFBFBD>
java:S1319<18>"mThe return type of this method should be an interface such as "Set" rather than the implementation "HashSet".(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
<EFBFBD>
java:S1319<18>"mThe return type of this method should be an interface such as "Set" rather than the implementation "HashSet".(𷕅8<><38><EFBFBD>/
H
java:S5411<18>"*Use the primitive boolean expression here.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
H
java:S5411<18>"*Use the primitive boolean expression here.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
H
java:S5411<18>"*Use the primitive boolean expression here.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
H
java:S5411<18>"*Use the primitive boolean expression here.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
M
java:S5411<18>"*Use the primitive boolean expression here.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
p
java:S2259."SA "NullPointerException" could be thrown; "getConnectionFactory()" can return null.(<28><><EFBFBD>8<><38><EFBFBD>/
q
java:S2259<18>"SA "NullPointerException" could be thrown; "getConnectionFactory()" can return null.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
q
java:S2259<18>"SA "NullPointerException" could be thrown; "getConnectionFactory()" can return null.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
p
java:S2259"SA "NullPointerException" could be thrown; "getConnectionFactory()" can return null.(<28>ȅ<EFBFBD>8<><38><EFBFBD>/
q
java:S2259<18>"SA "NullPointerException" could be thrown; "getConnectionFactory()" can return null.(<28>֏<EFBFBD>8<><38><EFBFBD>/

View File

@ -1,21 +0,0 @@
Q
java:S3740"/Provide the parametrized type for this generic.(⋠<><E28BA0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
Q
java:S3740"/Provide the parametrized type for this generic.(⋠<><E28BA0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
L
java:S3740"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
L
java:S3740"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
Q
java:S3740#"/Provide the parametrized type for this generic.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
p java:S116"ORename this field "NAME" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
o java:S116"NRename this field "PID" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
r java:S116"QRename this field "TOPICS" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(⋠<><E28BA0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD>/
k java:S116"ORename this field "INFO" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD>/
h
java:S3252H"FUse static access with "com.alibaba.fastjson.JSON" for "toJSONString".(<28><>֝<EFBFBD><D69D><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
<EFBFBD>
java:S1319#"rThe type of the "customInfo" object should be an interface such as "Map" rather than the implementation "HashMap".(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
`
java:S1155,">Use isEmpty() to check whether the collection is empty or not.(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/

View File

@ -1,5 +0,0 @@
t
java:S3077"WUse a thread-safe type; adding "volatile" is not enough to make this field thread-safe.(<28><><EFBFBD><EFBFBD>8<><38><EFBFBD><EFBFBD>/
o
java:S1215$"TDon't try to be smarter than the JVM, remove this call to run the garbage collector.(<28><>ݧ<EFBFBD><DDA7><EFBFBD><EFBFBD><EFBFBD>

View File

@ -1,71 +0,0 @@
Y
)src/main/resources/application.properties,0\6\06f65155ec73600b9fc5c4dc2883d4bb84d8e284
i
9src/test/java/site/cnkj/utils/CommonApplicationTests.java,6\f\6f823bd3fbefd4cf49e9d51ea41235329137be8c
7
LICENSE,0\3\0398ccd0f49298b10a3d76a47800d2ebecd49859
>
.gitattributes,2\4\24139dae656713ba861751fb2c2ac38839349a7a
k
;src/main/java/site/cnkj/common/config/AsyncExecutePool.java,4\1\416390ba57649e9f4e6365934e9a6827cca3ffed
p
@src/main/java/site/cnkj/common/config/AsyncThreadPoolConfig.java,8\0\80bf55a45d89443866509f377d2b4f56db7fda1b
t
Dsrc/main/java/site/cnkj/common/config/ElasticsearchClientConfig.java,c/1/c131e8dffaaace66f248f9071023b60be7b277a4
f
6src/main/java/site/cnkj/common/config/RedisConfig.java,2\b\2b5e0787fcb106c7e2c215b9201949810fe97d18
m
=src/main/java/site/cnkj/common/config/RestTemplateConfig.java,f\c\fc37a8cb3cd4e86789b6dcadf3271e6894269266
i
9src/main/java/site/cnkj/common/object/redis/Receiver.java,4\a\4a24c23f6158d7abc5657040e232691adcee44ac
m
=src/main/java/site/cnkj/common/object/servlet/BaseResult.java,1\9\19affac2f7e5749f37c36532ef281eec1befbd05
l
<src/main/java/site/cnkj/common/object/ReasonEnumeration.java,6\5\65fb0f3f093182fd2ca42f4eb1116d36adc8a868
o
?src/main/java/site/cnkj/common/utils/http/RestTemplateUtil.java,7\7\776a6d7b367518db3108c641270f9c6311fa1150
_
/src/main/java/site/cnkj/data/ProtobufOuter.java,9\f\9f5f569cdcb2cd35235adfef521ccd334b295f84
h
8src/main/java/site/cnkj/data/ProtobufOuterOperation.java,b\2\b28def072d697c755d8047d7c4fc36e92d284e43
;
_config.yml,c\d\cd089ae45ce870c45e434019e8f1ed4f066cd425
l
<src/main/java/site/cnkj/common/config/MongoClientConfig.java,a/7/a7482e3aea73010d528b7d36a1714c752a72fa1d
q
Asrc/main/java/site/cnkj/common/utils/file/FileEncryptDecrypt.java,e\a\eaa75651d9d6785c2bd75843529d61a722450af5
9
README.md,8\e\8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d
s
Csrc/main/java/site/cnkj/common/object/servlet/ResponseBodyCode.java,b\c\bc46480ac8ea27c54208391c0607483f70591f52
m
=src/main/java/site/cnkj/common/object/servlet/DataResult.java,1\c\1c4b500508bae883bea47d0637c267e8c57d7580
m
=src/main/java/site/cnkj/common/object/servlet/CommonInfo.java,6\b\6b5bb34dca0a1a09968bad0dc5ab4ad5434df80e
h
8src/main/java/site/cnkj/common/service/ActuatorInfo.java,e\7\e7ba402f75a71f1f452cbf16986ed26aa0c6f1b5
o
?src/main/java/site/cnkj/common/utils/data/MongoClientsInit.java,4\9\490c965ee8a02ce158895987485283bb4b666ab6
h
8src/main/java/site/cnkj/common/utils/data/RedisUtil.java,e\0\e00232faab93cb27b9940f780c75123903d70b1c
g
7src/main/java/site/cnkj/common/utils/file/FileUtil.java,d\f\df021943680d67b4f49e98599f4bb0e86803c590
m
=src/main/java/site/cnkj/common/utils/http/HttpCommonUtil.java,2\1\21fd7f9a07ee140f9ce9ae11bbe161bdd456cbc8
`
0src/main/java/site/cnkj/common/utils/io/DES.java,6\4\644b718a1d63acca44c411c399624e16ce98e11c
g
7src/main/java/site/cnkj/common/utils/io/RSAEncrypt.java,8\2\82864735cd8af377e6ad061ae189505a1e3e9d7c
g
7src/main/java/site/cnkj/common/utils/io/StringUtil.java,a\4\a43b6e3feeba3336586237a758acfa97b791be5b
k
;src/main/java/site/cnkj/common/utils/logger/LoggerUtil.java,4\f\4ffd3a6de814df96de78c74e6c16f964b4fe9a03
o
?src/main/java/site/cnkj/common/utils/serialize/JacksonUtil.java,8\9\899c5b5653c6a42950622470eb34ab3cd5851009
u
Esrc/main/java/site/cnkj/common/utils/serialize/SoapXmlFormatUtil.java,1\7\1759e0760a24aae1fd0b2b5d7d8622112c621b0e
q
Asrc/main/java/site/cnkj/common/utils/serialize/UrlDecodeUtil.java,1\4\14399913ca07717830f9b08ee87644884fc2959a
q
Asrc/main/java/site/cnkj/common/utils/system/GracefulShutdown.java,f\d\fdadf7a612307c5bb8e90739949b439a1891d886

View File

@ -1,124 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Palette2">
<group name="Swing">
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
</item>
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
</item>
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
</item>
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
</item>
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
<initial-values>
<property name="text" value="Button" />
</initial-values>
</item>
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
<initial-values>
<property name="text" value="RadioButton" />
</initial-values>
</item>
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
<initial-values>
<property name="text" value="CheckBox" />
</initial-values>
</item>
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
<initial-values>
<property name="text" value="Label" />
</initial-values>
</item>
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
<preferred-size width="150" height="-1" />
</default-constraints>
</item>
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
<preferred-size width="150" height="-1" />
</default-constraints>
</item>
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
<preferred-size width="150" height="-1" />
</default-constraints>
</item>
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
<preferred-size width="150" height="50" />
</default-constraints>
</item>
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
<preferred-size width="150" height="50" />
</default-constraints>
</item>
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
<preferred-size width="150" height="50" />
</default-constraints>
</item>
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
</item>
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
<preferred-size width="150" height="50" />
</default-constraints>
</item>
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
<preferred-size width="150" height="50" />
</default-constraints>
</item>
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
<preferred-size width="150" height="50" />
</default-constraints>
</item>
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
<preferred-size width="200" height="200" />
</default-constraints>
</item>
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
<preferred-size width="200" height="200" />
</default-constraints>
</item>
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
</item>
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
</item>
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
</item>
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
</item>
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
<preferred-size width="-1" height="20" />
</default-constraints>
</item>
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
</item>
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
</item>
</group>
</component>
</project>

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitSharedSettings">
<option name="FORCE_PUSH_PROHIBITED_PATTERNS">
<list />
</option>
</component>
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -1,1207 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoImportSettings">
<option name="autoReloadType" value="ALL" />
</component>
<component name="ChangeListManager">
<list default="true" id="8ab3ef3f-5475-495f-a0ee-8551c01ff741" name="Changes" comment="change MongoClientInit and fix some bug.">
<change beforePath="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/date/DateUtil.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/date/DateUtil.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="FileTemplateManagerImpl">
<option name="RECENT_TEMPLATES">
<list>
<option value="Class" />
</list>
</option>
</component>
<component name="FindInProjectRecents">
<findStrings>
<find>range</find>
<find>size</find>
<find>redisTemplate.delete</find>
<find>listRemove</find>
<find>public long rightPush</find>
<find>MongoClient</find>
<find>group</find>
<find>get</find>
<find>BOOTSTRAP_SERVERS_CONFIG</find>
<find>----------------------------------------------------</find>
</findStrings>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="IdeDocumentHistory">
<option name="CHANGED_PATHS">
<list>
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/config/AsyncExecutePool.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/FileEncryptDecrypt.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/FileUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/HttpCommonUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/RedisUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/config/RedisConfig.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/config/MongodbConfig.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/service/ActuatorInfo.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/SSH2Util.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/KafkaUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/cnkj/site/data/ProtobufOuter.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/StringUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/cnkj/site/data/ProtobufOuterOperation.java" />
<option value="$PROJECT_DIR$/repository/site/cnkj/CommonUtil/maven-metadata-local.xml" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/MongoClientsInit.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/utils/MongodbUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/common/utils/http/HttpCommonUtil.java" />
<option value="$PROJECT_DIR$/src/test/java/site/cnkj/utils/CommonApplicationTests.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/http/RestTemplateUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/file/FileEncryptDecrypt.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/file/FileUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/data/KafkaUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/config/RestTemplateConfig.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/config/RedisConfig.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/service/ActuatorInfo.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/io/CopyUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/io/StringUtil.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/logger/LoggerUtil.java" />
<option value="$PROJECT_DIR$/pom.xml" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/data/MongoClientsInit.java" />
<option value="$PROJECT_DIR$/src/main/java/site/cnkj/common/config/MongoClientConfig.java" />
<option value="$PROJECT_DIR$/README.md" />
</list>
</option>
</component>
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
<component name="JsGulpfileManager">
<detection-done>true</detection-done>
<sorting>DEFINITION_ORDER</sorting>
</component>
<component name="MavenProjectNavigator">
<treeState>
<expand>
<path>
<item name="" type="16c1761:MavenProjectsStructure$RootNode" />
<item name="CommonUtil" type="9519ce18:MavenProjectsStructure$ProjectNode" />
</path>
<path>
<item name="" type="16c1761:MavenProjectsStructure$RootNode" />
<item name="CommonUtil" type="9519ce18:MavenProjectsStructure$ProjectNode" />
<item name="Lifecycle" type="58874e2:MavenProjectsStructure$LifecycleNode" />
</path>
</expand>
<select />
</treeState>
</component>
<component name="NodePackageJsonFileManager">
<packageJsonPaths />
</component>
<component name="ProjectFrameBounds" extendedState="6">
<option name="x" value="-8" />
<option name="y" value="-8" />
<option name="width" value="1936" />
<option name="height" value="1056" />
</component>
<component name="ProjectId" id="1rNQooSf82LfOOK4SAsyZj0gAtA" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
<ConfirmationsSetting value="2" id="Add" />
</component>
<component name="ProjectView">
<navigator proportions="" version="1">
<foldersAlwaysOnTop value="true" />
</navigator>
<panes>
<pane id="Scope" />
<pane id="PackagesPane" />
<pane id="ProjectPane">
<subPane>
<expand>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="config" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="object" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="object" type="462c0819:PsiDirectoryNode" />
<item name="redis" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="object" type="462c0819:PsiDirectoryNode" />
<item name="servlet" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="service" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="data" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="date" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="file" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="http" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="io" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="logger" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="serialize" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="common" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
<item name="system" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="main" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="cnkj" type="462c0819:PsiDirectoryNode" />
<item name="data" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="test" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="test" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="src" type="462c0819:PsiDirectoryNode" />
<item name="test" type="462c0819:PsiDirectoryNode" />
<item name="java" type="462c0819:PsiDirectoryNode" />
<item name="utils" type="462c0819:PsiDirectoryNode" />
</path>
<path>
<item name="CommonUtil" type="b2602c69:ProjectViewProjectNode" />
<item name="CommonUtil" type="462c0819:PsiDirectoryNode" />
<item name="target" type="462c0819:PsiDirectoryNode" />
</path>
</expand>
<select />
</subPane>
</pane>
<pane id="AndroidView" />
</panes>
</component>
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">
<property name="LombokPluginEnabledInProject" value="true" />
<property name="LombokPluginIS_ANNOTATION_PROCESSING_CHECK_Enabled" value="true" />
<property name="LombokPluginIS_BUILDER_Enabled" value="true" />
<property name="LombokPluginIS_CONSTRUCTOR_Enabled" value="true" />
<property name="LombokPluginIS_DELEGATE_Enabled" value="true" />
<property name="LombokPluginIS_LOG_Enabled" value="true" />
<property name="LombokPluginIS_LOMBOK_VERSION_CHECK_Enabled" value="false" />
<property name="LombokPluginIS_MISSING_LOMBOK_CHECK_Enabled" value="true" />
<property name="LombokPluginIS_VAL_Enabled" value="true" />
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
<property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
<property name="SONARLINT_PRECOMMIT_ANALYSIS" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="aspect.path.notification.shown" value="true" />
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
<property name="node.js.detected.package.eslint" value="true" />
<property name="node.js.detected.package.standard" value="true" />
<property name="node.js.path.for.package.eslint" value="project" />
<property name="node.js.path.for.package.standard" value="project" />
<property name="node.js.selected.package.eslint" value="C:\Users\Carol\AppData\Roaming\npm\node_modules\eslint" />
<property name="node.js.selected.package.standard" value="" />
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
<property name="project.structure.last.edited" value="Project" />
<property name="project.structure.proportion" value="0.0" />
<property name="project.structure.side.proportion" value="0.2" />
<property name="settings.editor.selected.configurable" value="reference.settingsdialog.IDE.editor.colors" />
</component>
<component name="RecentsManager">
<key name="CopyFile.RECENT_KEYS">
<recent name="F:\mine\CommonUtil\src\main\java\site\cnkj\common" />
<recent name="F:\mine\CommonUtil\src\main\java" />
<recent name="F:\CommonUtil\repository\site\cnkj\CommonUtil" />
<recent name="F:\CommonUtil\maven" />
</key>
<key name="CopyClassDialog.RECENTS_KEY">
<recent name="site.cnkj.common.config" />
</key>
<key name="MoveFile.RECENT_KEYS">
<recent name="F:\CommonUtil\repository\site\cnkj\CommonUtil\1.1.0" />
<recent name="F:\CommonUtil\repository\site\cnkj\CommonUtil" />
</key>
</component>
<component name="RunManager" selected="Application.DateUtil">
<configuration name="CommonApplicationTests" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="site.cnkj.utils.CommonApplicationTests" />
<module name="CommonUtil" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="site.cnkj.utils.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="DateUtil" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="site.cnkj.common.utils.date.DateUtil" />
<module name="CommonUtil" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="site.cnkj.common.utils.date.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="HttpCommonUtil" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="site.cnkj.utils.HttpCommonUtil" />
<module name="CommonUtil" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="site.cnkj.common.utils.data.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="KafkaUtil" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="site.cnkj.utils.KafkaUtil" />
<module name="CommonUtil" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="site.cnkj.common.utils.data.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="SSH2Util" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="site.cnkj.common.utils.http.SSH2Util" />
<module name="CommonUtil" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="site.cnkj.common.utils.data.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="Application" factoryName="Application">
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="JUnit" factoryName="JUnit">
<option name="TEST_OBJECT" value="class" />
<option name="WORKING_DIRECTORY" value="%MODULE_WORKING_DIR%" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="TestNG">
<option name="TEST_OBJECT" value="CLASS" />
<option name="WORKING_DIRECTORY" value="%MODULE_WORKING_DIR%" />
<properties />
<listeners />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<list>
<item itemvalue="Application.CommonApplicationTests" />
<item itemvalue="Application.HttpCommonUtil" />
<item itemvalue="Application.KafkaUtil" />
<item itemvalue="Application.SSH2Util" />
<item itemvalue="Application.DateUtil" />
</list>
<recent_temporary>
<list>
<item itemvalue="Application.DateUtil" />
<item itemvalue="Application.SSH2Util" />
<item itemvalue="Application.KafkaUtil" />
<item itemvalue="Application.HttpCommonUtil" />
<item itemvalue="Application.CommonApplicationTests" />
</list>
</recent_temporary>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="SvnConfiguration">
<configuration />
</component>
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="8ab3ef3f-5475-495f-a0ee-8551c01ff741" name="Changes" comment="change MongoClientInit and fix some bug." />
<created>1574318981558</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1574318981558</updated>
<workItem from="1574318985781" duration="20983000" />
<workItem from="1574645677739" duration="20147000" />
<workItem from="1574752879588" duration="2458000" />
<workItem from="1574835832018" duration="761000" />
<workItem from="1575510784503" duration="16722000" />
<workItem from="1575597300473" duration="4388000" />
<workItem from="1576052386425" duration="1344000" />
<workItem from="1577177015630" duration="4911000" />
<workItem from="1577415273846" duration="2628000" />
<workItem from="1577437512143" duration="1157000" />
<workItem from="1578970199029" duration="617000" />
<workItem from="1579241019347" duration="2236000" />
<workItem from="1579419449173" duration="2484000" />
<workItem from="1597628550773" duration="1330000" />
<workItem from="1612775343578" duration="692000" />
<workItem from="1612838922198" duration="1250000" />
<workItem from="1615280802811" duration="2696000" />
<workItem from="1615862401748" duration="5071000" />
<workItem from="1616492699296" duration="2945000" />
<workItem from="1616556037817" duration="4640000" />
<workItem from="1630984333922" duration="7500000" />
<workItem from="1631697111147" duration="3971000" />
<workItem from="1632885910059" duration="1347000" />
<workItem from="1632966379808" duration="5078000" />
</task>
<task id="LOCAL-00001" summary="repair some lombok questions">
<created>1574320188766</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1574320188766</updated>
</task>
<task id="LOCAL-00002" summary="SonarLint">
<created>1574321436529</created>
<option name="number" value="00002" />
<option name="presentableId" value="LOCAL-00002" />
<option name="project" value="LOCAL" />
<updated>1574321436529</updated>
</task>
<task id="LOCAL-00003" summary="new info for use it">
<created>1574323845093</created>
<option name="number" value="00003" />
<option name="presentableId" value="LOCAL-00003" />
<option name="project" value="LOCAL" />
<updated>1574323845093</updated>
</task>
<task id="LOCAL-00004" summary="download">
<created>1574324452589</created>
<option name="number" value="00004" />
<option name="presentableId" value="LOCAL-00004" />
<option name="project" value="LOCAL" />
<updated>1574324452589</updated>
</task>
<task id="LOCAL-00005" summary="note">
<created>1574324574660</created>
<option name="number" value="00005" />
<option name="presentableId" value="LOCAL-00005" />
<option name="project" value="LOCAL" />
<updated>1574324574660</updated>
</task>
<task id="LOCAL-00006" summary="Merge branch 'master' of https://github.com/carolcoral/CommonUtil&#10;&#10;# Conflicts:&#10;#&#9;README.md">
<created>1574325130810</created>
<option name="number" value="00006" />
<option name="presentableId" value="LOCAL-00006" />
<option name="project" value="LOCAL" />
<updated>1574325130810</updated>
</task>
<task id="LOCAL-00007" summary="Merge branch 'master' of https://github.com/carolcoral/CommonUtil&#10;&#10;# Conflicts:&#10;#&#9;README.md">
<created>1574325149223</created>
<option name="number" value="00007" />
<option name="presentableId" value="LOCAL-00007" />
<option name="project" value="LOCAL" />
<updated>1574325149223</updated>
</task>
<task id="LOCAL-00008" summary="repair methods`name and result of return in RedisUtil.class">
<created>1574407956134</created>
<option name="number" value="00008" />
<option name="presentableId" value="LOCAL-00008" />
<option name="project" value="LOCAL" />
<updated>1574407956134</updated>
</task>
<task id="LOCAL-00009" summary="pom.xml had change">
<created>1574411837384</created>
<option name="number" value="00009" />
<option name="presentableId" value="LOCAL-00009" />
<option name="project" value="LOCAL" />
<updated>1574411837384</updated>
</task>
<task id="LOCAL-00010" summary="change README">
<created>1574411942406</created>
<option name="number" value="00010" />
<option name="presentableId" value="LOCAL-00010" />
<option name="project" value="LOCAL" />
<updated>1574411942406</updated>
</task>
<task id="LOCAL-00011" summary="new MongoDBUtil">
<created>1574672317445</created>
<option name="number" value="00011" />
<option name="presentableId" value="LOCAL-00011" />
<option name="project" value="LOCAL" />
<updated>1574672317445</updated>
</task>
<task id="LOCAL-00012" summary="1.0.2">
<created>1574672730578</created>
<option name="number" value="00012" />
<option name="presentableId" value="LOCAL-00012" />
<option name="project" value="LOCAL" />
<updated>1574672730578</updated>
</task>
<task id="LOCAL-00013" summary="1.0.2">
<created>1574819212177</created>
<option name="number" value="00013" />
<option name="presentableId" value="LOCAL-00013" />
<option name="project" value="LOCAL" />
<updated>1574819212177</updated>
</task>
<task id="LOCAL-00014" summary="change result for KafkaUtil from &quot;TopicPartition&quot; to &quot;String&quot;">
<created>1574835930667</created>
<option name="number" value="00014" />
<option name="presentableId" value="LOCAL-00014" />
<option name="project" value="LOCAL" />
<updated>1574835930667</updated>
</task>
<task id="LOCAL-00015" summary="add new method to get offset from kafka">
<created>1575513135743</created>
<option name="number" value="00015" />
<option name="presentableId" value="LOCAL-00015" />
<option name="project" value="LOCAL" />
<updated>1575513135743</updated>
</task>
<task id="LOCAL-00016" summary="readme.md">
<created>1576052500071</created>
<option name="number" value="00016" />
<option name="presentableId" value="LOCAL-00016" />
<option name="project" value="LOCAL" />
<updated>1576052500071</updated>
</task>
<task id="LOCAL-00017" summary="readme.md">
<created>1576053081227</created>
<option name="number" value="00017" />
<option name="presentableId" value="LOCAL-00017" />
<option name="project" value="LOCAL" />
<updated>1576053081227</updated>
</task>
<task id="LOCAL-00018" summary="readme.md">
<created>1576053595567</created>
<option name="number" value="00018" />
<option name="presentableId" value="LOCAL-00018" />
<option name="project" value="LOCAL" />
<updated>1576053595567</updated>
</task>
<task id="LOCAL-00019" summary="get offset from kafka by timestamp">
<created>1577179466914</created>
<option name="number" value="00019" />
<option name="presentableId" value="LOCAL-00019" />
<option name="project" value="LOCAL" />
<updated>1577179466914</updated>
</task>
<task id="LOCAL-00020" summary="demo for protobuf operation">
<created>1577438196875</created>
<option name="number" value="00020" />
<option name="presentableId" value="LOCAL-00020" />
<option name="project" value="LOCAL" />
<updated>1577438196875</updated>
</task>
<task id="LOCAL-00021" summary="maven">
<created>1579420465866</created>
<option name="number" value="00021" />
<option name="presentableId" value="LOCAL-00021" />
<option name="project" value="LOCAL" />
<updated>1579420465866</updated>
</task>
<task id="LOCAL-00022" summary="new class for multi mongo-client">
<created>1597628792278</created>
<option name="number" value="00022" />
<option name="presentableId" value="LOCAL-00022" />
<option name="project" value="LOCAL" />
<updated>1597628792278</updated>
</task>
<task id="LOCAL-00023" summary="new class for multi mongo-client">
<created>1597629876924</created>
<option name="number" value="00023" />
<option name="presentableId" value="LOCAL-00023" />
<option name="project" value="LOCAL" />
<updated>1597629876924</updated>
</task>
<task id="LOCAL-00024" summary="change folder and fix some bug">
<created>1612840009845</created>
<option name="number" value="00024" />
<option name="presentableId" value="LOCAL-00024" />
<option name="project" value="LOCAL" />
<updated>1612840009845</updated>
</task>
<task id="LOCAL-00025" summary="change folder and fix some bug">
<created>1612840186807</created>
<option name="number" value="00025" />
<option name="presentableId" value="LOCAL-00025" />
<option name="project" value="LOCAL" />
<updated>1612840186807</updated>
</task>
<task id="LOCAL-00026" summary="change data folder">
<created>1615280926031</created>
<option name="number" value="00026" />
<option name="presentableId" value="LOCAL-00026" />
<option name="project" value="LOCAL" />
<updated>1615280926031</updated>
</task>
<task id="LOCAL-00027" summary="change data folder">
<created>1616493647106</created>
<option name="number" value="00027" />
<option name="presentableId" value="LOCAL-00027" />
<option name="project" value="LOCAL" />
<updated>1616493647106</updated>
</task>
<task id="LOCAL-00028" summary="change MongoClientInit and fix some bug.">
<created>1616568687426</created>
<option name="number" value="00028" />
<option name="presentableId" value="LOCAL-00028" />
<option name="project" value="LOCAL" />
<updated>1616568687426</updated>
</task>
<option name="localTasksCounter" value="29" />
<servers />
</component>
<component name="TimeTrackingManager">
<option name="totallyTimeSpent" value="99460000" />
</component>
<component name="ToolWindowManager">
<frame x="-8" y="-8" width="1936" height="1056" extended-state="6" />
<editor active="true" />
<layout>
<window_info anchor="right" id="Palette" order="3" />
<window_info anchor="right" id="RestServices" order="4" />
<window_info anchor="bottom" id="Event Log" order="7" side_tool="true" />
<window_info anchor="right" id="Maven Projects" order="3" weight="0.32995737" />
<window_info anchor="bottom" id="Database Changes" order="7" show_stripe_button="false" />
<window_info id="Capture Tool" order="2" />
<window_info id="Designer" order="2" />
<window_info anchor="bottom" id="Statistic" order="7" />
<window_info anchor="right" id="Database" order="3" />
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
<window_info id="UI Designer" order="2" />
<window_info anchor="bottom" id="Debug" order="3" weight="0.3991276" />
<window_info anchor="bottom" id="TODO" order="6" />
<window_info anchor="bottom" id="Messages" order="7" weight="0.3293348" />
<window_info anchor="right" id="Palette&#9;" order="3" />
<window_info id="Image Layers" order="2" />
<window_info anchor="bottom" id="Java Enterprise" order="7" />
<window_info anchor="right" id="Capture Analysis" order="3" />
<window_info active="true" anchor="bottom" id="Version Control" order="7" visible="true" weight="0.32606325" />
<window_info anchor="bottom" id="Run" order="2" weight="0.3642312" />
<window_info anchor="bottom" id="Spring" order="7" />
<window_info anchor="bottom" id="Terminal" order="7" weight="0.3293348" />
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.20842217" />
<window_info id="Web" order="2" side_tool="true" />
<window_info anchor="bottom" id="SonarLint" order="7" weight="0.3293348" />
<window_info anchor="right" id="Theme Preview" order="3" />
<window_info id="Favorites" order="2" side_tool="true" />
<window_info anchor="right" id="Bean Validation" order="3" />
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
<window_info anchor="bottom" id="Message" order="0" />
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
<window_info anchor="bottom" id="Find" order="1" />
</layout>
<layout-to-restore>
<window_info id="Designer" order="0" />
<window_info anchor="right" id="Palette" order="0" />
<window_info anchor="bottom" id="Spring" order="0" />
<window_info id="Image Layers" order="1" />
<window_info anchor="bottom" id="Run" order="11" weight="0.519084" />
<window_info anchor="bottom" id="Cvs" order="13" weight="0.25" />
<window_info anchor="right" id="Ant Build" order="8" weight="0.25" />
<window_info id="UI Designer" order="2" />
<window_info id="Favorites" order="3" side_tool="true" />
<window_info anchor="bottom" id="Terminal" order="1" />
<window_info id="Capture Tool" order="4" />
<window_info anchor="right" id="Capture Analysis" order="1" />
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="7" type="SLIDING" weight="0.4" />
<window_info anchor="bottom" id="Event Log" order="2" side_tool="true" />
<window_info anchor="bottom" id="Statistic" order="3" />
<window_info anchor="bottom" id="TODO" order="15" />
<window_info anchor="bottom" id="SonarLint" order="4" weight="0.3293348" />
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="9" weight="0.25" />
<window_info anchor="bottom" id="Java Enterprise" order="5" />
<window_info anchor="bottom" id="Database Changes" order="6" show_stripe_button="false" />
<window_info anchor="bottom" id="Version Control" order="7" visible="true" weight="0.3293348" />
<window_info anchor="right" id="Maven Projects" order="2" weight="0.32995737" />
<window_info active="true" content_ui="combo" id="Project" order="6" visible="true" weight="0.20415778" />
<window_info anchor="bottom" id="Messages" order="8" weight="0.3293348" />
<window_info anchor="right" id="Database" order="3" />
<window_info anchor="bottom" id="Message" order="9" />
<window_info id="Web" order="5" side_tool="true" />
<window_info anchor="right" id="Palette&#9;" order="4" />
<window_info anchor="right" id="Theme Preview" order="5" />
<window_info id="Structure" order="7" side_tool="true" weight="0.25" />
<window_info anchor="bottom" id="Inspection" order="14" weight="0.4" />
<window_info anchor="bottom" id="Find" order="10" />
<window_info anchor="right" id="Bean Validation" order="6" />
<window_info anchor="bottom" id="Debug" order="12" weight="0.4" />
</layout-to-restore>
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="Vcs.Log.History.Properties">
<option name="COLUMN_ID_ORDER">
<list>
<option value="Default.Root" />
<option value="Default.Author" />
<option value="Default.Date" />
<option value="Default.Subject" />
<option value="Space.CommitStatus" />
</list>
</option>
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
<option name="oldMeFiltersMigrated" value="true" />
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="repair some lombok questions" />
<MESSAGE value="SonarLint" />
<MESSAGE value="new info for use it" />
<MESSAGE value="download" />
<MESSAGE value="note" />
<MESSAGE value="Merge branch 'master' of https://github.com/carolcoral/CommonUtil&#10;&#10;# Conflicts:&#10;#&#9;README.md" />
<MESSAGE value="repair methods`name and result of return in RedisUtil.class" />
<MESSAGE value="pom.xml had change" />
<MESSAGE value="change README" />
<MESSAGE value="new MongoDBUtil" />
<MESSAGE value="1.0.2" />
<MESSAGE value="change result for KafkaUtil from &quot;TopicPartition&quot; to &quot;String&quot;" />
<MESSAGE value="add new method to get offset from kafka" />
<MESSAGE value="readme.md" />
<MESSAGE value="get offset from kafka by timestamp" />
<MESSAGE value="demo for protobuf operation" />
<MESSAGE value="maven" />
<MESSAGE value="new class for multi mongo-client" />
<MESSAGE value="change folder and fix some bug" />
<MESSAGE value="change data folder" />
<MESSAGE value="change MongoClientInit and fix some bug." />
<option name="LAST_COMMIT_MESSAGE" value="change MongoClientInit and fix some bug." />
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="true" />
</component>
<component name="XDebuggerManager">
<breakpoint-manager>
<breakpoints>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/http/SSH2Util.java</url>
<line>153</line>
<option name="timeStamp" value="6" />
</line-breakpoint>
</breakpoints>
</breakpoint-manager>
</component>
<component name="XSLT-Support.FileAssociations.UIState">
<expand />
<select />
</component>
<component name="editorHistoryManager">
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/utils/KafkaUtil.java" />
<entry file="jar://C:/Program Files/Java/jdk1.8.0_171/src.zip!/java/util/Map.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="245">
<caret line="295" column="9" selection-start-line="295" selection-start-column="9" selection-end-line="295" selection-end-column="9" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/utils/RedisUtil.java" />
<entry file="file://$PROJECT_DIR$/repository/site/cnkj/CommonUtil/1.1.0/_remote.repositories" />
<entry file="jar://$MAVEN_REPOSITORY$/org/apache/kafka/kafka-clients/1.1.1/kafka-clients-1.1.1-sources.jar!/org/apache/kafka/common/TopicPartition.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="280">
<caret line="29" column="49" selection-start-line="29" selection-start-column="49" selection-end-line="29" selection-end-column="49" />
</state>
</provider>
</entry>
<entry file="jar://$MAVEN_REPOSITORY$/org/apache/kafka/kafka-clients/1.1.1/kafka-clients-1.1.1-sources.jar!/org/apache/kafka/clients/consumer/KafkaConsumer.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="20">
<caret line="1608" column="99" selection-start-line="1608" selection-start-column="99" selection-end-line="1608" selection-end-column="99" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/repository/site/cnkj/CommonUtil/1.1.0/CommonUtil-1.1.0.pom" />
<entry file="file://$PROJECT_DIR$/repository/site/cnkj/CommonUtil/maven-metadata-local.xml" />
<entry file="file://$PROJECT_DIR$/.gitignore">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/utils/MongoClientsInit.java" />
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/object/servlet/BaseResult.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/serialize/UrlDecodeUtil.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/utils/StringUtil.java" />
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/utils/config/ElasticsearchConfig.java" />
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/utils/LoggerUtil.java" />
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/object/redis/Receiver.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="100">
<caret line="5" column="17" selection-start-line="5" selection-start-column="17" selection-end-line="5" selection-end-column="17" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/ElasticsearchClientConfig.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="1620">
<caret line="105" column="50" selection-start-line="105" selection-start-column="50" selection-end-line="105" selection-end-column="50" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/object/servlet/DataResult.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="140">
<caret line="8" selection-start-line="8" selection-end-line="8" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/data/RedisUtil.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="jar://$MAVEN_REPOSITORY$/org/springframework/spring-beans/5.2.8.RELEASE/spring-beans-5.2.8.RELEASE.jar!/org/springframework/beans/factory/xml/XmlBeanFactory.class">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="140">
<caret line="13" column="11" selection-start-line="13" selection-start-column="11" selection-end-line="13" selection-end-column="11" />
</state>
</provider>
</entry>
<entry file="jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/5.2.8.RELEASE/spring-context-5.2.8.RELEASE.jar!/org/springframework/context/support/FileSystemXmlApplicationContext.class">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="120">
<caret line="13" column="13" selection-start-line="13" selection-start-column="13" selection-end-line="13" selection-end-column="13" />
</state>
</provider>
</entry>
<entry file="jar://$MAVEN_REPOSITORY$/org/springframework/spring-core/5.2.8.RELEASE/spring-core-5.2.8.RELEASE.jar!/org/springframework/core/io/DefaultResourceLoader.class">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="720">
<caret line="64" column="20" selection-start-line="64" selection-start-column="20" selection-end-line="64" selection-end-column="20" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/http/SSH2Util.java" />
<entry file="jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/5.2.8.RELEASE/spring-context-5.2.8.RELEASE-sources.jar!/org/springframework/context/support/FileSystemXmlApplicationContext.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="660">
<caret line="51" column="17" selection-start-line="51" selection-start-column="17" selection-end-line="51" selection-end-column="17" />
</state>
</provider>
</entry>
<entry file="jar://$MAVEN_REPOSITORY$/org/mongodb/mongodb-driver/3.8.2/mongodb-driver-3.8.2-sources.jar!/com/mongodb/MongoClientURI.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="235">
<caret line="329" column="39" selection-start-line="329" selection-start-column="39" selection-end-line="329" selection-end-column="39" />
</state>
</provider>
</entry>
<entry file="jar://$MAVEN_REPOSITORY$/org/mongodb/mongodb-driver-legacy/4.0.5/mongodb-driver-legacy-4.0.5-sources.jar!/com/mongodb/MongoClientURI.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="-1373">
<caret line="246" column="11" selection-start-line="246" selection-start-column="11" selection-end-line="246" selection-end-column="11" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/data/ProtobufOuter.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="851">
<caret line="66" column="19" selection-start-line="66" selection-start-column="19" selection-end-line="66" selection-end-column="19" />
<folding>
<element signature="e#2522#2523#0" expanded="true" />
<element signature="e#2560#2561#0" expanded="true" />
<element signature="e#2595#2596#0" expanded="true" />
<element signature="e#2663#2664#0" expanded="true" />
<element signature="e#2778#2779#0" expanded="true" />
<element signature="e#2827#2828#0" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/data/ProtobufOuterOperation.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="-593">
<caret line="16" column="13" selection-start-line="16" selection-start-column="13" selection-end-line="16" selection-end-column="13" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/MongodbConfig.java" />
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/data/MongodbUtil.java" />
<entry file="file://$PROJECT_DIR$/src/test/java/site/cnkj/utils/CommonApplicationTests.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="467">
<caret line="139" column="99" lean-forward="true" selection-start-line="132" selection-start-column="12" selection-end-line="139" selection-end-column="99" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/io/DES.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/io/RSAEncrypt.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/serialize/SoapXmlFormatUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="1560">
<caret line="86" column="8" selection-start-line="86" selection-start-column="8" selection-end-line="86" selection-end-column="8" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/http/HttpCommonUtil.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/AsyncExecutePool.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/AsyncThreadPoolConfig.java">
<provider selected="true" editor-type-id="text-editor" />
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/http/RestTemplateUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="140">
<caret line="14" column="12" selection-start-line="14" selection-start-column="12" selection-end-line="14" selection-end-column="12" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/file/FileEncryptDecrypt.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="820">
<caret line="62" column="17" selection-start-line="62" selection-start-column="17" selection-end-line="62" selection-end-column="17" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/file/FileUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="1740">
<caret line="100" column="52" selection-start-line="100" selection-start-column="52" selection-end-line="100" selection-end-column="52" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/data/KafkaUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="40">
<caret line="2" column="39" selection-start-line="2" selection-start-column="39" selection-end-line="2" selection-end-column="39" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/RestTemplateConfig.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="320">
<caret line="16" selection-start-line="16" selection-end-line="16" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/RedisConfig.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="1500">
<caret line="90" selection-start-line="90" selection-end-line="90" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/service/ActuatorInfo.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="120">
<caret line="17" column="10" selection-start-line="17" selection-start-column="10" selection-end-line="17" selection-end-column="10" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/io/CopyUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state>
<caret column="34" selection-start-column="34" selection-end-column="34" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/io/StringUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="220">
<caret line="11" column="35" selection-start-line="11" selection-start-column="35" selection-end-line="11" selection-end-column="35" />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/logger/LoggerUtil.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="340">
<caret line="31" column="5" selection-start-line="31" selection-start-column="5" selection-end-line="31" selection-end-column="5" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/pom.xml">
<provider editor-type-id="MavenHelperPluginDependencyAnalyzer" />
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="180">
<caret line="9" column="18" selection-start-line="9" selection-start-column="18" selection-end-line="9" selection-end-column="18" />
<folding>
<element signature="n#build#0;n#project#0;n#!!top" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/utils/data/MongoClientsInit.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="551">
<caret line="37" column="42" lean-forward="true" selection-start-line="37" selection-start-column="42" selection-end-line="37" selection-end-column="42" />
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/src/main/java/site/cnkj/common/config/MongoClientConfig.java">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="506">
<caret line="48" column="38" lean-forward="true" selection-start-line="48" selection-start-column="38" selection-end-line="48" selection-end-column="38" />
<folding>
<element signature="imports" expanded="true" />
<element signature="e#985#986#0" expanded="true" />
<element signature="e#1082#1083#0" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/README.md">
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
<state split_layout="FIRST">
<first_editor relative-caret-position="460">
<caret line="23" column="43" lean-forward="true" selection-start-line="23" selection-start-column="43" selection-end-line="23" selection-end-column="43" />
</first_editor>
<second_editor />
</state>
</provider>
</entry>
</component>
<component name="masterDetails">
<states>
<state key="ProjectJDKs.UI">
<settings>
<last-edited>1.8</last-edited>
<splitter-proportions>
<option name="proportions">
<list>
<option value="0.2" />
</list>
</option>
</splitter-proportions>
</settings>
</state>
</states>
</component>
<component name="mavenExecuteGoalHistory">
<option value="" />
</component>
</project>

View File

@ -1,97 +0,0 @@
{
"groups": [
{
"name": "spring.async.pool",
"type": "site.cnkj.common.config.AsyncThreadPoolConfig",
"sourceType": "site.cnkj.common.config.AsyncThreadPoolConfig"
},
{
"name": "spring.customize.elasticsearch",
"type": "site.cnkj.common.config.ElasticsearchClientConfig",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig"
},
{
"name": "spring.data.mongodb",
"type": "site.cnkj.common.config.MongoClientConfig",
"sourceType": "site.cnkj.common.config.MongoClientConfig"
}
],
"properties": [
{
"name": "spring.async.pool.core-pool-size",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.AsyncThreadPoolConfig",
"defaultValue": 0
},
{
"name": "spring.async.pool.keep-alive-seconds",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.AsyncThreadPoolConfig",
"defaultValue": 0
},
{
"name": "spring.async.pool.max-pool-size",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.AsyncThreadPoolConfig",
"defaultValue": 0
},
{
"name": "spring.async.pool.queue-capacity",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.AsyncThreadPoolConfig",
"defaultValue": 0
},
{
"name": "spring.customize.elasticsearch.cluster-nodes",
"type": "java.lang.String[]",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig"
},
{
"name": "spring.customize.elasticsearch.connect-timeout",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig",
"defaultValue": 5000
},
{
"name": "spring.customize.elasticsearch.failure-delay",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig",
"defaultValue": 3000
},
{
"name": "spring.customize.elasticsearch.max-retry-timeout",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig",
"defaultValue": 30000
},
{
"name": "spring.customize.elasticsearch.max-retry-timeout-millis",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig",
"defaultValue": 60000
},
{
"name": "spring.customize.elasticsearch.password",
"type": "java.lang.String",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig"
},
{
"name": "spring.customize.elasticsearch.sniffer-interval",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig",
"defaultValue": 60000
},
{
"name": "spring.customize.elasticsearch.socket-timeout",
"type": "java.lang.Integer",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig",
"defaultValue": 60000
},
{
"name": "spring.customize.elasticsearch.username",
"type": "java.lang.String",
"sourceType": "site.cnkj.common.config.ElasticsearchClientConfig"
}
],
"hints": []
}