From c0b7303b65a8385d56879775991bc1ce9ce78b7e Mon Sep 17 00:00:00 2001
From: 许鹏程 <1821349743@qq.com>
Date: 星期一, 12 六月 2023 10:56:06 +0800
Subject: [PATCH] init
---
/dev/null | 137 -----
product-server-project-contract/.gitignore | 9
product-server-project-base/.gitignore | 9
product-server-project-contract/pom.xml | 78 --
pom.xml | 1273 +++++++++++++++++++++++++++++-----------------
product-server-project-base/pom.xml | 69 --
6 files changed, 831 insertions(+), 744 deletions(-)
diff --git a/pom.xml b/pom.xml
index 6b014ad..42178fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,489 +1,810 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.3.RELEASE</version>
- <relativePath/>
- </parent>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>product-project-server</name>
- <description>product-project-server</description>
- <modules>
- <module>product-server-project-base</module>
- <module>product-server-project-contract</module>
- <module>product-server-project-customer</module>
- <module>product-server-project-web</module>
- </modules>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <finalName>web</finalName><!-- war鍖呯殑鍚嶇О -->
- <start-class>com.lx.server.Application</start-class>
- <java.version>1.8</java.version>
- <commons-io.version>2.6</commons-io.version>
- <fst.version>2.57</fst.version>
- <commons-text.version>1.3</commons-text.version>
- <commons-beanutils.version>1.9.3</commons-beanutils.version>
- <metadata-extractor.version>2.11.0</metadata-extractor.version>
- <blade-patchca.version>1.1.0</blade-patchca.version>
- <zxing.version>3.3.2</zxing.version>
- <ant.version>1.9.7</ant.version>
- <jmimemagic.version>0.1.5</jmimemagic.version>
- <jsoup.version>1.11.3</jsoup.version>
- <commons-email.version>1.5</commons-email.version>
- <activation.version>1.1.1</activation.version>
- <UserAgentUtils.version>1.21</UserAgentUtils.version>
- <thumbnailator.version>0.4.8</thumbnailator.version>
- <twelvemonkeys.version>3.4.1</twelvemonkeys.version>
- <poi.version>3.17</poi.version>
- <pinyin4j.version>2.5.1</pinyin4j.version>
- <mybatis.version>3.4.6</mybatis.version>
- <mybatis-spring.version>1.3.2</mybatis-spring.version>
- <commons-fileupload.version>1.3.3</commons-fileupload.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <!--鏀寔浣跨敤 JDBC 璁块棶鏁版嵁搴� -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-parent</artifactId>
+ <version>2.1.3.RELEASE</version>
+ </parent>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server</artifactId>
+ <version>2.0.0-release</version>
+ <packaging>pom</packaging>
+ <name>product-server</name>
+ <description>product-server</description>
+ <modules>
+ <module>product-server-project-base</module>
+ <module>product-server-project-contract</module>
+ <module>product-server-web</module>
+ </modules>
+ <properties>
+ <skipTests>true</skipTests>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <finalName>web</finalName><!-- war鍖呯殑鍚嶇О -->
+ <start-class>com.product.Application</start-class>
+ <java.version>1.8</java.version>
+ <commons-io.version>2.11.0</commons-io.version>
+ <fst.version>2.57</fst.version>
+ <commons-text.version>1.3</commons-text.version>
+ <commons-beanutils.version>1.9.3</commons-beanutils.version>
+ <metadata-extractor.version>2.11.0</metadata-extractor.version>
+ <blade-patchca.version>1.1.0</blade-patchca.version>
+ <zxing.version>3.3.2</zxing.version>
+ <ant.version>1.9.7</ant.version>
+ <jmimemagic.version>0.1.5</jmimemagic.version>
+ <jsoup.version>1.11.3</jsoup.version>
+ <commons-email.version>1.5</commons-email.version>
+ <activation.version>1.1.1</activation.version>
+ <UserAgentUtils.version>1.21</UserAgentUtils.version>
+ <thumbnailator.version>0.4.8</thumbnailator.version>
+ <twelvemonkeys.version>3.4.1</twelvemonkeys.version>
+ <poi.version>3.16</poi.version>
+ <pinyin4j.version>2.5.1</pinyin4j.version>
+ <commons-fileupload.version>1.3.3</commons-fileupload.version>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.build.version>2.0.0-release</project.build.version>
+ <product-module-version>2.0.0-release</product-module-version>
+ </properties>
+ <repositories>
+ <repository>
+ <id>aliyun</id>
+ <name>aliyun</name>
+ <url>https://maven.aliyun.com/repository/public</url>
+ </repository>
+ <repository>
+ <id>nexus</id>
+ <name>Team Nexus Repository</name>
+ <url>http://nonxin.cn:8088/repository/LX-PRODUCT-PUBLIC/</url>
+ </repository>
+ </repositories>
+ <distributionManagement>
+ <repository>
+ <!--娉ㄦ剰ID閰嶇疆涓巗ettings.xml涓璼erver閰嶇疆ID淇濇寔涓�鑷�-->
+ <id>nexus-releases</id>
+ <name>Artifactory-releases</name>
+ <url>http://nonxin.cn:8088/repository/LX-PRODUCT-RELEASE/</url>
+ </repository>
+ <snapshotRepository>
+ <id>nexus-snapshots</id>
+ <name>Artifactory-snapshots</name>
+ <url>http://nonxin.cn:8088/repository/LX-PRODUCT-SNAPSHOT/</url>
+ </snapshotRepository>
+ </distributionManagement>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>aliyun</id>
+ <name>aliyun</name>
+ <url>https://maven.aliyun.com/repository/public</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>nexus</id>
+ <name>Team Nexus Repository</name>
+ <url>http://nonxin.cn:8088/repository/LX-PRODUCT-PUBLIC/</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <dependencyManagement>
+ <dependencies>
+ <!--瀛愭ā鍧楋細start-->
+ <dependency>
+ <groupId>org.spring</groupId>
+ <artifactId>spring-server-master</artifactId>
+ <version>1.2.6.6</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-core</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-project-base</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-project-contract</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-util</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-tool-face</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-tool-table</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-tool-flow</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-tool-dev</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-tool-mvc</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-text-message</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-task</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-report</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-quartz</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-print</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-patch</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-org-admin</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-mq</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-lucene</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-file</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-email</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-data-sync</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-data-export-import</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-data-center</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-customer</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-common</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-badge</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-auth</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-announcement</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-administration</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-admin</artifactId>
+ <version>${product-module-version}</version>
+ </dependency>
+ <!--瀛愭ā鍧楋細end-->
+
+ <!--绗笁鏂逛緷璧栵細start-->
+ <dependency>
+ <groupId>cn.hutool</groupId>
+ <artifactId>hutool-all</artifactId>
+ <version>5.8.11</version>
+ </dependency>
+ <!-- mailgun smtp -->
+ <dependency>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-client</artifactId>
+ <version>1.19.4</version>
+ </dependency>
+ <dependency>
+ <groupId>com.mashape.unirest</groupId>
+ <artifactId>unirest-java</artifactId>
+ <version>1.4.9</version>
+ </dependency>
+ <dependency>
+ <groupId>io.logz.logback</groupId>
+ <artifactId>logzio-logback-appender</artifactId>
+ <version>1.0.24</version>
+ </dependency>
+ <dependency>
+ <groupId>redis.clients</groupId>
+ <artifactId>jedis</artifactId>
+ <version>2.9.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>druid</artifactId>
+ <version>1.2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ <version>8.0.20</version>
+ </dependency>
+ <!-- 鍥剧墖楠岃瘉鐮佺敓鎴� -->
+ <dependency>
+ <groupId>com.bladejava</groupId>
+ <artifactId>blade-patchca</artifactId>
+ <version>${blade-patchca.version}</version>
+ </dependency>
+ <!-- 鍥剧墖楠岃瘉鐮佺敓鎴� -->
+ <dependency>
+ <groupId>com.github.penggle</groupId>
+ <artifactId>kaptcha</artifactId>
+ <version>2.3.2</version>
+ </dependency>
+ <!-- 鍥剧墖Meta鑾峰彇 -->
+ <dependency>
+ <groupId>com.drewnoakes</groupId>
+ <artifactId>metadata-extractor</artifactId>
+ <version>${metadata-extractor.version}</version>
+ </dependency>
+ <!-- 鏉″舰鐮併�佷簩缁寸爜鐢熸垚 -->
+ <dependency>
+ <groupId>com.google.zxing</groupId>
+ <artifactId>core</artifactId>
+ <version>${zxing.version}</version>
+ </dependency>
+ <!-- 缂╃暐鍥惧伐鍏� -->
+ <dependency>
+ <groupId>net.coobird</groupId>
+ <artifactId>thumbnailator</artifactId>
+ <version>${thumbnailator.version}</version>
+ </dependency>
+ <!-- 鏀寔CMYK鍥剧墖 -->
+ <dependency>
+ <groupId>com.twelvemonkeys.imageio</groupId>
+ <artifactId>imageio-jpeg</artifactId>
+ <version>${twelvemonkeys.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.2</version>
+ </dependency>
+ <!--logo4j-->
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>2.15.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>2.15.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ <version>2.15.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.itextpdf</groupId>
+ <artifactId>itextpdf</artifactId>
+ <version>5.5.13</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.pdfbox</groupId>
+ <artifactId>pdfbox</artifactId>
+ <version>2.0.25</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.pdfbox</groupId>
+ <artifactId>pdfbox-app</artifactId>
+ <version>2.0.25</version>
+ </dependency>
+ <dependency>
+ <groupId>io.jsonwebtoken</groupId>
+ <artifactId>jjwt</artifactId>
+ <version>0.9.1</version>
+ </dependency>
+ <!--绗笁鏂逛緷璧栵細end-->
+
+ </dependencies>
+ </dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ </exclusion>
+
+ </exclusions>
+ </dependency>
+ <!--logo4j-->
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>2.15.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>2.15.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ <version>2.15.0</version>
+ </dependency>
+
+ <!--鏀寔浣跨敤 JDBC 璁块棶鏁版嵁搴� -->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-jdbc</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-webmvc</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-web</artifactId>
+ </dependency>
+ <dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
- <version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
- <dependency>
- <groupId>org.apache.tomcat</groupId>
- <artifactId>tomcat-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
-
- <!-- Need this to compile JSP <dependency> <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency> -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </dependency>
- <!-- Java serialization -->
- <dependency>
- <groupId>de.ruedigermoeller</groupId>
- <artifactId>fst</artifactId>
- <version>${fst.version}</version>
- </dependency>
- <!-- Spring begin -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-beans</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- Spring end -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-text</artifactId>
- <version>${commons-text.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.2</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>${commons-beanutils.version}</version>
- </dependency>
-
- <!-- 鍥剧墖楠岃瘉鐮佺敓鎴� -->
- <dependency>
- <groupId>com.bladejava</groupId>
- <artifactId>blade-patchca</artifactId>
- <version>${blade-patchca.version}</version>
- </dependency>
- <!-- 鍥剧墖楠岃瘉鐮佺敓鎴� -->
- <dependency>
- <groupId>com.github.penggle</groupId>
- <artifactId>kaptcha</artifactId>
- <version>2.3.2</version>
- </dependency>
- <!-- 鍥剧墖Meta鑾峰彇 -->
- <dependency>
- <groupId>com.drewnoakes</groupId>
- <artifactId>metadata-extractor</artifactId>
- <version>${metadata-extractor.version}</version>
- </dependency>
- <!-- 鏉″舰鐮併�佷簩缁寸爜鐢熸垚 -->
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- <version>${zxing.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>${zxing.version}</version>
- </dependency>
- <!-- Apache Tools Ant Tar Zip -->
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>${ant.version}</version>
- </dependency>
- <!-- File MimeType ContentType -->
- <dependency>
- <groupId>net.sf.jmimemagic</groupId>
- <artifactId>jmimemagic</artifactId>
- <version>${jmimemagic.version}</version>
- <!--<exclusions> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId>
- </exclusion> <exclusion> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-xc</artifactId>
- </exclusion> <exclusion> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-jaxrs</artifactId>
- </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId>
- </exclusion> </exclusions> -->
- </dependency>
- <!-- Jackson json -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-xml</artifactId>
- </dependency>
- <!-- Java xml -->
- <dependency>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- </dependency>
-
- <!-- XPath xml -->
- <dependency>
- <groupId>jaxen</groupId>
- <artifactId>jaxen</artifactId>
- </dependency>
-
- <!-- Snake YAML -->
- <dependency>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- </dependency>
-
- <!-- Apache HTTP -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
-
- <!-- Jsoup HTTP -->
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>${jsoup.version}</version>
- </dependency>
-
- <!-- Email -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-email</artifactId>
- <version>${commons-email.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>${commons-fileupload.version}</version>
- </dependency>
- <dependency>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- <version>${activation.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <!-- User Agent -->
- <dependency>
- <groupId>eu.bitwalker</groupId>
- <artifactId>UserAgentUtils</artifactId>
- <version>${UserAgentUtils.version}</version>
- </dependency>
- <!-- 缂╃暐鍥惧伐鍏� -->
- <dependency>
- <groupId>net.coobird</groupId>
- <artifactId>thumbnailator</artifactId>
- <version>${thumbnailator.version}</version>
- </dependency>
- <!-- 鏀寔CMYK鍥剧墖 -->
- <dependency>
- <groupId>com.twelvemonkeys.imageio</groupId>
- <artifactId>imageio-jpeg</artifactId>
- <version>${twelvemonkeys.version}</version>
- </dependency>
- <!-- POI Office Tools -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>${poi.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>commons-codec</artifactId>
- <groupId>commons-codec</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml-schemas</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-scratchpad</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <!-- pinyin4j -->
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>${pinyin4j.version}</version>
- </dependency>
-
- <!-- Logging begin -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <!-- common-logging 瀹為檯璋冪敤 slf4j -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- </dependency>
- <!-- jdk logging 瀹為檯璋冪敤 slf4j -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jul-to-slf4j</artifactId>
- </dependency>
- <!-- log4j 瀹為檯璋冪敤 slf4j -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>log4j-over-slf4j</artifactId>
- </dependency>
- <!-- slf4j logback 瀹炵幇 -->
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- </dependency>
- <!-- Logging end -->
-
- <!-- JUnit Test -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.collections/google-collections
- <dependency> <groupId>com.google.collections</groupId> <artifactId>google-collections</artifactId>
- <version>1.0</version> </dependency> -->
- <dependency>
- <groupId>com.adobe.xmp</groupId>
- <artifactId>xmpcore</artifactId>
- <version>5.1.2</version>
- </dependency>
- <dependency>
- <groupId>com.auth0</groupId>
- <artifactId>java-jwt</artifactId>
- <version>3.3.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.56</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>org.thymeleaf</groupId>
- <artifactId>thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.theborakompanioni</groupId>
- <artifactId>thymeleaf-extras-shiro</artifactId>
- <version>1.2.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>0.9.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15 -->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15</artifactId>
- <version>1.46</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.9.2</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.9.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <!-- <version>6.0.6</version>-->
- <version>8.0.20</version>
- </dependency>
- <!-- 闃块噷绯荤殑Druid渚濊禆鍖� -->
- <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.24</version>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/org.fusesource/sigar -->
- <dependency>
- <groupId>org.fusesource</groupId>
- <artifactId>sigar</artifactId>
- <version>1.6.4</version>
- </dependency>
- <!--rabbitmq-->
- <dependency>
- <groupId>com.rabbitmq</groupId>
- <artifactId>amqp-client</artifactId>
- <version>5.6.0</version>
- </dependency>
- <!--mybatis-->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>1.3.0</version>
- </dependency>
-
-
- <!-- 閫氱敤mapper -->
- <dependency>
- <groupId>tk.mybatis</groupId>
- <artifactId>mapper-spring-boot-starter</artifactId>
- <version>2.0.2</version>
- </dependency>
- <dependency>
- <groupId>io.logz.logback</groupId>
- <artifactId>logzio-logback-appender</artifactId>
- <version>1.0.24</version>
+ <dependency>
+ <groupId>org.apache.tomcat</groupId>
+ <artifactId>tomcat-jdbc</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-test</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
</dependency>
- <!-- 瀹樻柟鎻愪緵 -->
- <!-- https://mvnrepository.com/artifact/com.mashape.unirest/unirest-java -->
- <dependency>
- <groupId>com.mashape.unirest</groupId>
- <artifactId>unirest-java</artifactId>
- <version>1.4.9</version>
- </dependency>
- <!-- mailgun smtp -->
- <dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-client</artifactId>
- <version>1.19.4</version>
- </dependency>
+ <!-- Need this to compile JSP <dependency> <groupId>org.apache.tomcat.embed</groupId>
+ <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency> -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ </dependency>
+ <!-- Java serialization -->
+ <dependency>
+ <groupId>de.ruedigermoeller</groupId>
+ <artifactId>fst</artifactId>
+ <version>${fst.version}</version>
+ </dependency>
+ <!-- Spring begin -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-web</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <!-- Spring end -->
+ <dependency>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-text</artifactId>
+ <version>${commons-text.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>${commons-io.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>${commons-beanutils.version}</version>
+ </dependency>
- </dependencies>
- <!-- 璁惧畾鎻掍欢浠撳簱-闃块噷浜� -->
- <pluginRepositories>
- <!--<pluginRepository>
- <id>mrc-repos</id>
- <name>mrc Repository</name>
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
- </pluginRepository> -->
+ <dependency>
+ <groupId>com.google.zxing</groupId>
+ <artifactId>javase</artifactId>
+ <version>${zxing.version}</version>
+ </dependency>
+ <!-- Apache Tools Ant Tar Zip -->
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>${ant.version}</version>
+ </dependency>
+ <!-- File MimeType ContentType -->
+ <dependency>
+ <groupId>net.sf.jmimemagic</groupId>
+ <artifactId>jmimemagic</artifactId>
+ <version>${jmimemagic.version}</version>
+ </dependency>
+ <!-- Jackson json -->
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-xml</artifactId>
+ </dependency>
+ <!-- Java xml -->
+ <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ </dependency>
- <pluginRepository>
- <id>mvnrepository</id>
- <name>mvnrepository</name>
- <url>http://www.mvnrepository.com/</url>
- <layout>default</layout>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
-</project>
\ No newline at end of file
+ <!-- XPath xml -->
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen</artifactId>
+ </dependency>
+
+ <!-- Snake YAML -->
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ </dependency>
+
+ <!-- Apache HTTP -->
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ </dependency>
+
+ <!-- Jsoup HTTP -->
+ <dependency>
+ <groupId>org.jsoup</groupId>
+ <artifactId>jsoup</artifactId>
+ <version>${jsoup.version}</version>
+ </dependency>
+
+ <!-- Email -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-email</artifactId>
+ <version>${commons-email.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>${commons-fileupload.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>${activation.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-websocket</artifactId>
+ </dependency>
+ <!-- User Agent -->
+ <dependency>
+ <groupId>eu.bitwalker</groupId>
+ <artifactId>UserAgentUtils</artifactId>
+ <version>${UserAgentUtils.version}</version>
+ </dependency>
+
+ <!-- POI Office Tools -->
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi</artifactId>
+ <version>${poi.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ </exclusion>
+
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi-ooxml</artifactId>
+ <version>${poi.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ </exclusion>
+
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi-ooxml-schemas</artifactId>
+ <version>3.16</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ </exclusion>
+
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi-scratchpad</artifactId>
+ <version>${poi.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ </exclusion>
+
+ </exclusions>
+ </dependency>
+ <!-- pinyin4j -->
+ <dependency>
+ <groupId>com.belerweb</groupId>
+ <artifactId>pinyin4j</artifactId>
+ <version>${pinyin4j.version}</version>
+ </dependency>
+
+ <!-- Logging begin -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <!-- common-logging 瀹為檯璋冪敤 slf4j -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jcl-over-slf4j</artifactId>
+ </dependency>
+ <!-- jdk logging 瀹為檯璋冪敤 slf4j -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jul-to-slf4j</artifactId>
+ </dependency>
+ <!-- log4j 瀹為檯璋冪敤 slf4j -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>log4j-over-slf4j</artifactId>
+ </dependency>
+ <!-- slf4j logback 瀹炵幇 -->
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ </dependency>
+ <!-- Logging end -->
+
+ <!-- JUnit Test -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-test</artifactId>
+ </dependency>
+ <!-- https://mvnrepository.com/artifact/com.google.collections/google-collections
+ <dependency> <groupId>com.google.collections</groupId> <artifactId>google-collections</artifactId>
+ <version>1.0</version> </dependency> -->
+ <dependency>
+ <groupId>com.adobe.xmp</groupId>
+ <artifactId>xmpcore</artifactId>
+ <version>5.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.auth0</groupId>
+ <artifactId>java-jwt</artifactId>
+ <version>3.3.0</version>
+ </dependency>
+ <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>fastjson</artifactId>
+ <version>1.2.56</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.thymeleaf</groupId>
+ <artifactId>thymeleaf</artifactId>
+ </dependency>
+ <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15 -->
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15</artifactId>
+ <version>1.46</version>
+ </dependency>
+ <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
+ <dependency>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ </dependency>
+ <!-- 闃块噷绯荤殑Druid渚濊禆鍖� -->
+ <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>druid</artifactId>
+ </dependency>
+
+
+ <dependency>
+ <groupId>io.logz.logback</groupId>
+ <artifactId>logzio-logback-appender</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>com.mashape.unirest</groupId>
+ <artifactId>unirest-java</artifactId>
+ </dependency>
+ <!-- mailgun smtp -->
+ <dependency>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-client</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>cn.hutool</groupId>
+ <artifactId>hutool-all</artifactId>
+ </dependency>
+ <!-- 鍥剧墖楠岃瘉鐮佺敓鎴� -->
+ <dependency>
+ <groupId>com.bladejava</groupId>
+ <artifactId>blade-patchca</artifactId>
+ </dependency>
+ <!-- 鍥剧墖楠岃瘉鐮佺敓鎴� -->
+ <dependency>
+ <groupId>com.github.penggle</groupId>
+ <artifactId>kaptcha</artifactId>
+ </dependency>
+ <!-- 鍥剧墖Meta鑾峰彇 -->
+ <dependency>
+ <groupId>com.drewnoakes</groupId>
+ <artifactId>metadata-extractor</artifactId>
+ </dependency>
+ <!-- 鏉″舰鐮併�佷簩缁寸爜鐢熸垚 -->
+ <dependency>
+ <groupId>com.google.zxing</groupId>
+ <artifactId>core</artifactId>
+ </dependency>
+ <!-- 缂╃暐鍥惧伐鍏� -->
+ <dependency>
+ <groupId>net.coobird</groupId>
+ <artifactId>thumbnailator</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>io.jsonwebtoken</groupId>
+ <artifactId>jjwt</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.fusesource</groupId>
+ <artifactId>sigar</artifactId>
+ <version>1.6.4</version>
+ </dependency>
+ </dependencies>
+</project>
diff --git a/product-server-project-base/.factorypath b/product-server-project-base/.factorypath
deleted file mode 100644
index 249f9a3..0000000
--- a/product-server-project-base/.factorypath
+++ /dev/null
@@ -1,281 +0,0 @@
-<factorypath>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-s3/1.11.421/aws-java-sdk-s3-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-kms/1.11.421/aws-java-sdk-kms-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/jmespath-java/1.11.421/jmespath-java-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-core/1.11.421/aws-java-sdk-core-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.9.8/jackson-dataformat-cbor-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpmime/4.5.7/httpmime-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/easyexcel/2.2.6/easyexcel-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cglib/cglib/3.1/cglib-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ow2/asm/asm/4.2/asm-4.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ehcache/ehcache/3.6.3/ehcache-3.6.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/sendgrid-java/4.3.0/sendgrid-java-4.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/java-http-client/4.1.0/java-http-client-4.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-identity/1.1.0/azure-identity-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j/1.6.1/msal4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j-persistence-extension/1.0.0/msal4j-persistence-extension-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna/4.5.2/jna-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/content-type/2.0/content-type-2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/nimbus-jose-jwt/8.8/nimbus-jose-jwt-8.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/nanohttpd/nanohttpd/2.3.1/nanohttpd-2.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna-platform/4.5.2/jna-platform-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2/2.1.4/KeePassJava2-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdb/2.1.4/KeePassJava2-kdb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/database/2.1.4/database-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/madgag/spongycastle/core/1.54.0.0/core-1.54.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jetbrains/annotations/15.0/annotations-15.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-dom/2.1.4/KeePassJava2-dom-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdbx/2.1.4/KeePassJava2-kdbx-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-jaxb/2.1.4/KeePassJava2-jaxb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-simple/2.1.4/KeePassJava2-simple-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/simpleframework/simple-xml/2.7.1/simple-xml-2.7.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax/1.2.0/stax-1.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xpp3/xpp3/1.1.3.3/xpp3-1.1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/aalto-xml/1.0.0/aalto-xml-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage/5.0.0/azure-storage-5.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-keyvault-core/0.8.0/azure-keyvault-core-0.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/hutool/hutool-all/5.7.9/hutool-all-5.7.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-jexl3/3.1/commons-jexl3-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-core/1.0.0-releases/product-server-core-1.0.0-releases.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-blob/12.8.0/azure-storage-blob-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core/1.7.0/azure-core-1.7.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-tcnative-boringssl-static/2.0.20.Final/netty-tcnative-boringssl-static-2.0.20.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-common/12.8.0/azure-storage-common-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core-http-netty/1.5.4/azure-core-http-netty-1.5.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-unix-common/4.1.33.Final/netty-transport-native-unix-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-epoll/4.1.33.Final/netty-transport-native-epoll-4.1.33.Final-linux-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-kqueue/4.1.33.Final/netty-transport-native-kqueue-4.1.33.Final-osx-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-internal-avro/12.0.0/azure-storage-internal-avro-12.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-file-share/12.6.0/azure-storage-file-share-12.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-blob/10.1.0/azure-storage-blob-10.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/rest/v2/client-runtime/2.0.0/client-runtime-2.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/reactivex/rxjava2/rxjava/2.2.6/rxjava-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-queue/10.0.0-Preview/azure-storage-queue-10.0.0-Preview.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-mail/2.1.3.RELEASE/spring-boot-starter-mail-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-boot-starter/2.2.0/mybatis-plus-boot-starter-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus/2.2.0/mybatis-plus-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-support/2.2.0/mybatis-plus-support-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-core/2.2.0/mybatis-plus-core-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jsqlparser/jsqlparser/1.1/jsqlparser-1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-generate/2.2.0/mybatis-plus-generate-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-starter/1.2.7/pagehelper-spring-boot-starter-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-autoconfigure/1.2.7/pagehelper-spring-boot-autoconfigure-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper/5.1.6/pagehelper-5.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queryparser/8.3.0/lucene-queryparser-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-core/8.3.0/lucene-core-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queries/8.3.0/lucene-queries-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-sandbox/8.3.0/lucene-sandbox-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-highlighter/8.3.0/lucene-highlighter-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-memory/8.3.0/lucene-memory-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-smartcn/8.3.0/lucene-analyzers-smartcn-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-common/8.3.0/lucene-analyzers-common-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/bestwu/ik-analyzers/5.1.0/ik-analyzers-5.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-solr/2.4.0/mmseg4j-solr-2.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-core/1.10.0/mmseg4j-core-1.10.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/artofsolving/jodconverter/2.2.2/jodconverter-2.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/artofsolving/jodconverter/jodconverter-core/3.0-beta-4/jodconverter-core-3.0-beta-4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-base/4.1.3/easypoi-base-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-annotation/4.1.3/easypoi-annotation-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/pdfbox/2.0.6/pdfbox-2.0.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/fontbox/2.0.6/fontbox-2.0.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/eclipse/birt/runtime/3_7_1/com.lowagie.text/2.1.7/com.lowagie.text-2.1.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/jurt/3.0.1/jurt-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/ridl/3.0.1/ridl-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/juh/3.0.1/juh-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/unoil/3.0.1/unoil-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-io/commons-io/2.4/commons-io-2.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-net/commons-net/3.7.2/commons-net-3.7.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/redis/clients/jedis/2.9.0/jedis-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-pool2/2.6.1/commons-pool2-2.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-data-redis/2.1.3.RELEASE/spring-boot-starter-data-redis-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-redis/2.1.5.RELEASE/spring-data-redis-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-keyvalue/2.1.5.RELEASE/spring-data-keyvalue-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-commons/2.1.5.RELEASE/spring-data-commons-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-oxm/5.1.5.RELEASE/spring-oxm-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context-support/5.1.5.RELEASE/spring-context-support-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/lettuce/lettuce-core/5.1.4.RELEASE/lettuce-core-5.1.4.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/json-smart/2.3/json-smart-2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/jstl/1.2/jstl-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/de/ruedigermoeller/fst/2.57/fst-2.57.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-text/1.3/commons-text-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/bladejava/blade-patchca/1.1.0/blade-patchca-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.6/lombok-1.18.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/penggle/kaptcha/2.3.2/kaptcha-2.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/jhlabs/filters/2.0.235-1/filters-2.0.235-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/drewnoakes/metadata-extractor/2.11.0/metadata-extractor-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/core/3.3.2/core-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/javase/3.3.2/javase-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/beust/jcommander/1.72/jcommander-1.72.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jai-imageio/jai-imageio-core/1.3.1/jai-imageio-core-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant/1.9.7/ant-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant-launcher/1.9.7/ant-launcher-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sf/jmimemagic/jmimemagic/0.1.5/jmimemagic-0.1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/log4j/log4j/1.2.8/log4j-1.2.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.9.8/jackson-dataformat-xml-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.8/jackson-module-jaxb-annotations-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpclient/4.5.7/httpclient-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jsoup/jsoup/1.11.3/jsoup-1.11.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-email/1.5/commons-email-1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/mail/javax.mail/1.6.2/javax.mail-1.6.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-fileupload/commons-fileupload/1.3.3/commons-fileupload-1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/activation/activation/1.1.1/activation-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-websocket/2.1.3.RELEASE/spring-boot-starter-websocket-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-messaging/5.1.5.RELEASE/spring-messaging-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-websocket/5.1.5.RELEASE/spring-websocket-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/eu/bitwalker/UserAgentUtils/1.21/UserAgentUtils-1.21.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/coobird/thumbnailator/0.4.8/thumbnailator-0.4.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-jpeg/3.4.1/imageio-jpeg-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-core/3.4.1/imageio-core-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-metadata/3.4.1/imageio-metadata-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-lang/3.4.1/common-lang-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-io/3.4.1/common-io-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-image/3.4.1/common-image-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi/3.17/poi-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax-api/1.0.1/stax-api-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-scratchpad/3.17/poi-scratchpad-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/belerweb/pinyin4j/2.5.1/pinyin4j-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/junit/junit/4.12/junit-4.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/adobe/xmp/xmpcore/5.1.2/xmpcore-5.1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/auth0/java-jwt/3.3.0/java-jwt-3.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/fastjson/1.2.56/fastjson-1.2.56.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sourceforge/nekohtml/nekohtml/1.9.22/nekohtml-1.9.22.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xerces/xercesImpl/2.11.0/xercesImpl-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-thymeleaf/2.1.3.RELEASE/spring-boot-starter-thymeleaf-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf-spring5/3.0.11.RELEASE/thymeleaf-spring5-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/extras/thymeleaf-extras-java8time/3.0.3.RELEASE/thymeleaf-extras-java8time-3.0.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf/3.0.11.RELEASE/thymeleaf-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ognl/ognl/3.1.12/ognl-3.1.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/attoparser/attoparser/2.0.5.RELEASE/attoparser-2.0.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/theborakompanioni/thymeleaf-extras-shiro/1.2.1/thymeleaf-extras-shiro-1.2.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/bouncycastle/bcprov-jdk15/1.46/bcprov-jdk15-1.46.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-annotations/1.5.20/swagger-annotations-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-models/1.5.20/swagger-models-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/guava/guava/20.0/guava-20.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/druid/1.1.24/druid-1.1.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/fusesource/sigar/1.6.4/sigar-1.6.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/rabbitmq/amqp-client/5.6.0/amqp-client-5.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.0/mybatis-spring-boot-starter-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.0/mybatis-spring-boot-autoconfigure-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis/3.4.4/mybatis-3.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-starter/2.0.2/mapper-spring-boot-starter-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-core/1.0.2/mapper-core-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/persistence/persistence-api/1.0/persistence-api-1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-base/1.0.1/mapper-base-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-weekend/1.1.3/mapper-weekend-1.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring/1.0.1/mapper-spring-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-extra/1.0.1/mapper-extra-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-autoconfigure/2.0.2/mapper-spring-boot-autoconfigure-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/logback/logzio-logback-appender/1.0.24/logzio-logback-appender-1.0.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/sender/logzio-sender/1.1.1/logzio-sender-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/mashape/unirest/unirest-java/1.4.9/unirest-java-1.4.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore-nio/4.4.11/httpcore-nio-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/json/json/20160212/json-20160212.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-client/1.19.4/jersey-client-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="PLUGIN" id="org.eclipse.jst.ws.annotations.core" enabled="false" runInBatchMode="false"/>
-</factorypath>
diff --git a/product-server-project-base/.gitignore b/product-server-project-base/.gitignore
new file mode 100644
index 0000000..1423cc3
--- /dev/null
+++ b/product-server-project-base/.gitignore
@@ -0,0 +1,9 @@
+lx_file/upload/
+lucene/
+attachment/upload/*/
+!attachment/upload/template/
+target/
+.classpath
+.project
+.settings/
+logs/
diff --git a/product-server-project-base/pom.xml b/product-server-project-base/pom.xml
index ed2db33..699d7d3 100644
--- a/product-server-project-base/pom.xml
+++ b/product-server-project-base/pom.xml
@@ -5,85 +5,32 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.lx</groupId>
- <artifactId>product-project-server</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <artifactId>product-server</artifactId>
+ <version>2.0.0-release</version>
</parent>
<artifactId>product-project-server-base</artifactId>
<name>product-project-server-base</name>
<description>product-project-server-base</description>
+ <version>2.0.0-release</version>
<dependencies>
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-common</artifactId>
- <version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-util</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-util</artifactId>
+ </dependency>
<!--releases -->
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-core</artifactId>
- <version>1.0.0-releases</version>
</dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>12.8.0</version>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-file-share</artifactId>
- <version>12.6.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>10.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.azure</groupId>
- <artifactId>azure-storage-queue</artifactId>
- <version>10.0.0-Preview</version>
- </dependency>
+
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-admin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>jurt</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>ridl</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>juh</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>unoil</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.7.2</version>
</dependency>
</dependencies>
-
+
</project>
diff --git a/product-server-project-base/src/main/resources/META-INF/MANIFEST.MF b/product-server-project-base/src/main/resources/META-INF/MANIFEST.MF
deleted file mode 100644
index 254272e..0000000
--- a/product-server-project-base/src/main/resources/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Class-Path:
-
diff --git a/product-server-project-base/src/main/resources/file.properties b/product-server-project-base/src/main/resources/file.properties
deleted file mode 100644
index c86362d..0000000
--- a/product-server-project-base/src/main/resources/file.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-source_domain=https://www.baidu.com
-default_domain=https://lx.blob.core.windows.net
-allowed_file_type=doc,docx,xls,xlsx,ppt,pptx,jpg,png,bmp,csv,pdf
diff --git a/product-server-project-contract/.factorypath b/product-server-project-contract/.factorypath
deleted file mode 100644
index d72fb2a..0000000
--- a/product-server-project-contract/.factorypath
+++ /dev/null
@@ -1,283 +0,0 @@
-<factorypath>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-s3/1.11.421/aws-java-sdk-s3-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-kms/1.11.421/aws-java-sdk-kms-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/jmespath-java/1.11.421/jmespath-java-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-core/1.11.421/aws-java-sdk-core-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.9.8/jackson-dataformat-cbor-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpmime/4.5.7/httpmime-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/easyexcel/2.2.6/easyexcel-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cglib/cglib/3.1/cglib-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ow2/asm/asm/4.2/asm-4.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ehcache/ehcache/3.6.3/ehcache-3.6.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/sendgrid-java/4.3.0/sendgrid-java-4.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/java-http-client/4.1.0/java-http-client-4.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-identity/1.1.0/azure-identity-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j/1.6.1/msal4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j-persistence-extension/1.0.0/msal4j-persistence-extension-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna/4.5.2/jna-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/content-type/2.0/content-type-2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/nimbus-jose-jwt/8.8/nimbus-jose-jwt-8.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/nanohttpd/nanohttpd/2.3.1/nanohttpd-2.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna-platform/4.5.2/jna-platform-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2/2.1.4/KeePassJava2-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdb/2.1.4/KeePassJava2-kdb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/database/2.1.4/database-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/madgag/spongycastle/core/1.54.0.0/core-1.54.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jetbrains/annotations/15.0/annotations-15.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-dom/2.1.4/KeePassJava2-dom-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdbx/2.1.4/KeePassJava2-kdbx-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-jaxb/2.1.4/KeePassJava2-jaxb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-simple/2.1.4/KeePassJava2-simple-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/simpleframework/simple-xml/2.7.1/simple-xml-2.7.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax/1.2.0/stax-1.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xpp3/xpp3/1.1.3.3/xpp3-1.1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/aalto-xml/1.0.0/aalto-xml-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage/5.0.0/azure-storage-5.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-keyvault-core/0.8.0/azure-keyvault-core-0.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/hutool/hutool-all/5.7.9/hutool-all-5.7.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-jexl3/3.1/commons-jexl3-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-core/1.0.0-releases/product-server-core-1.0.0-releases.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-blob/12.8.0/azure-storage-blob-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core/1.7.0/azure-core-1.7.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-tcnative-boringssl-static/2.0.20.Final/netty-tcnative-boringssl-static-2.0.20.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-common/12.8.0/azure-storage-common-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core-http-netty/1.5.4/azure-core-http-netty-1.5.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-unix-common/4.1.33.Final/netty-transport-native-unix-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-epoll/4.1.33.Final/netty-transport-native-epoll-4.1.33.Final-linux-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-kqueue/4.1.33.Final/netty-transport-native-kqueue-4.1.33.Final-osx-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-internal-avro/12.0.0/azure-storage-internal-avro-12.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-file-share/12.6.0/azure-storage-file-share-12.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-blob/10.1.0/azure-storage-blob-10.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/rest/v2/client-runtime/2.0.0/client-runtime-2.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/reactivex/rxjava2/rxjava/2.2.6/rxjava-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-queue/10.0.0-Preview/azure-storage-queue-10.0.0-Preview.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-mail/2.1.3.RELEASE/spring-boot-starter-mail-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-boot-starter/2.2.0/mybatis-plus-boot-starter-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus/2.2.0/mybatis-plus-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-support/2.2.0/mybatis-plus-support-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-core/2.2.0/mybatis-plus-core-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jsqlparser/jsqlparser/1.1/jsqlparser-1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-generate/2.2.0/mybatis-plus-generate-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-starter/1.2.7/pagehelper-spring-boot-starter-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-autoconfigure/1.2.7/pagehelper-spring-boot-autoconfigure-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper/5.1.6/pagehelper-5.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queryparser/8.3.0/lucene-queryparser-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-core/8.3.0/lucene-core-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queries/8.3.0/lucene-queries-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-sandbox/8.3.0/lucene-sandbox-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-highlighter/8.3.0/lucene-highlighter-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-memory/8.3.0/lucene-memory-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-smartcn/8.3.0/lucene-analyzers-smartcn-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-common/8.3.0/lucene-analyzers-common-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/bestwu/ik-analyzers/5.1.0/ik-analyzers-5.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-solr/2.4.0/mmseg4j-solr-2.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-core/1.10.0/mmseg4j-core-1.10.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/artofsolving/jodconverter/2.2.2/jodconverter-2.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/artofsolving/jodconverter/jodconverter-core/3.0-beta-4/jodconverter-core-3.0-beta-4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-base/4.1.3/easypoi-base-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-annotation/4.1.3/easypoi-annotation-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/eclipse/birt/runtime/3_7_1/com.lowagie.text/2.1.7/com.lowagie.text-2.1.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/jurt/3.0.1/jurt-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/ridl/3.0.1/ridl-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/juh/3.0.1/juh-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/unoil/3.0.1/unoil-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-io/commons-io/2.4/commons-io-2.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-net/commons-net/3.7.2/commons-net-3.7.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/itextpdf/itextpdf/5.5.13/itextpdf-5.5.13.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/pdfbox/2.0.25/pdfbox-2.0.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/fontbox/2.0.25/fontbox-2.0.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/pdfbox-app/2.0.25/pdfbox-app-2.0.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/redis/clients/jedis/2.9.0/jedis-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-pool2/2.6.1/commons-pool2-2.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-data-redis/2.1.3.RELEASE/spring-boot-starter-data-redis-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-redis/2.1.5.RELEASE/spring-data-redis-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-keyvalue/2.1.5.RELEASE/spring-data-keyvalue-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-commons/2.1.5.RELEASE/spring-data-commons-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-oxm/5.1.5.RELEASE/spring-oxm-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context-support/5.1.5.RELEASE/spring-context-support-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/lettuce/lettuce-core/5.1.4.RELEASE/lettuce-core-5.1.4.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/json-smart/2.3/json-smart-2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/jstl/1.2/jstl-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/de/ruedigermoeller/fst/2.57/fst-2.57.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-text/1.3/commons-text-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/bladejava/blade-patchca/1.1.0/blade-patchca-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.6/lombok-1.18.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/penggle/kaptcha/2.3.2/kaptcha-2.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/jhlabs/filters/2.0.235-1/filters-2.0.235-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/drewnoakes/metadata-extractor/2.11.0/metadata-extractor-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/core/3.3.2/core-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/javase/3.3.2/javase-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/beust/jcommander/1.72/jcommander-1.72.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jai-imageio/jai-imageio-core/1.3.1/jai-imageio-core-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant/1.9.7/ant-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant-launcher/1.9.7/ant-launcher-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sf/jmimemagic/jmimemagic/0.1.5/jmimemagic-0.1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/log4j/log4j/1.2.8/log4j-1.2.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.9.8/jackson-dataformat-xml-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.8/jackson-module-jaxb-annotations-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpclient/4.5.7/httpclient-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jsoup/jsoup/1.11.3/jsoup-1.11.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-email/1.5/commons-email-1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/mail/javax.mail/1.6.2/javax.mail-1.6.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-fileupload/commons-fileupload/1.3.3/commons-fileupload-1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/activation/activation/1.1.1/activation-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-websocket/2.1.3.RELEASE/spring-boot-starter-websocket-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-messaging/5.1.5.RELEASE/spring-messaging-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-websocket/5.1.5.RELEASE/spring-websocket-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/eu/bitwalker/UserAgentUtils/1.21/UserAgentUtils-1.21.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/coobird/thumbnailator/0.4.8/thumbnailator-0.4.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-jpeg/3.4.1/imageio-jpeg-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-core/3.4.1/imageio-core-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-metadata/3.4.1/imageio-metadata-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-lang/3.4.1/common-lang-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-io/3.4.1/common-io-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-image/3.4.1/common-image-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi/3.17/poi-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax-api/1.0.1/stax-api-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-scratchpad/3.17/poi-scratchpad-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/belerweb/pinyin4j/2.5.1/pinyin4j-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/junit/junit/4.12/junit-4.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/adobe/xmp/xmpcore/5.1.2/xmpcore-5.1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/auth0/java-jwt/3.3.0/java-jwt-3.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/fastjson/1.2.56/fastjson-1.2.56.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sourceforge/nekohtml/nekohtml/1.9.22/nekohtml-1.9.22.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xerces/xercesImpl/2.11.0/xercesImpl-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-thymeleaf/2.1.3.RELEASE/spring-boot-starter-thymeleaf-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf-spring5/3.0.11.RELEASE/thymeleaf-spring5-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/extras/thymeleaf-extras-java8time/3.0.3.RELEASE/thymeleaf-extras-java8time-3.0.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf/3.0.11.RELEASE/thymeleaf-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ognl/ognl/3.1.12/ognl-3.1.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/attoparser/attoparser/2.0.5.RELEASE/attoparser-2.0.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/theborakompanioni/thymeleaf-extras-shiro/1.2.1/thymeleaf-extras-shiro-1.2.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/bouncycastle/bcprov-jdk15/1.46/bcprov-jdk15-1.46.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-annotations/1.5.20/swagger-annotations-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-models/1.5.20/swagger-models-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/guava/guava/20.0/guava-20.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/druid/1.1.24/druid-1.1.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/fusesource/sigar/1.6.4/sigar-1.6.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/rabbitmq/amqp-client/5.6.0/amqp-client-5.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.0/mybatis-spring-boot-starter-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.0/mybatis-spring-boot-autoconfigure-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis/3.4.4/mybatis-3.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-starter/2.0.2/mapper-spring-boot-starter-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-core/1.0.2/mapper-core-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/persistence/persistence-api/1.0/persistence-api-1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-base/1.0.1/mapper-base-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-weekend/1.1.3/mapper-weekend-1.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring/1.0.1/mapper-spring-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-extra/1.0.1/mapper-extra-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-autoconfigure/2.0.2/mapper-spring-boot-autoconfigure-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/logback/logzio-logback-appender/1.0.24/logzio-logback-appender-1.0.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/sender/logzio-sender/1.1.1/logzio-sender-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/mashape/unirest/unirest-java/1.4.9/unirest-java-1.4.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore-nio/4.4.11/httpcore-nio-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/json/json/20160212/json-20160212.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-client/1.19.4/jersey-client-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="PLUGIN" id="org.eclipse.jst.ws.annotations.core" enabled="false" runInBatchMode="false"/>
-</factorypath>
diff --git a/product-server-project-contract/.gitignore b/product-server-project-contract/.gitignore
new file mode 100644
index 0000000..1423cc3
--- /dev/null
+++ b/product-server-project-contract/.gitignore
@@ -0,0 +1,9 @@
+lx_file/upload/
+lucene/
+attachment/upload/*/
+!attachment/upload/template/
+target/
+.classpath
+.project
+.settings/
+logs/
diff --git a/product-server-project-contract/pom.xml b/product-server-project-contract/pom.xml
index bc0351c..5f152c8 100644
--- a/product-server-project-contract/pom.xml
+++ b/product-server-project-contract/pom.xml
@@ -5,97 +5,35 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.lx</groupId>
- <artifactId>product-project-server</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <artifactId>product-server</artifactId>
+ <version>2.0.0-release</version>
</parent>
<artifactId>product-project-server-contract</artifactId>
<name>product-project-server-contract</name>
<description>product-project-server-contract</description>
+ <version>2.0.0-release</version>
<dependencies>
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-common</artifactId>
- <version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-util</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <!--releases -->
+ <groupId>com.lx</groupId>
+ <artifactId>product-server-util</artifactId>
+ </dependency>
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-core</artifactId>
- <version>1.0.0-releases</version>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>12.8.0</version>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-file-share</artifactId>
- <version>12.6.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>10.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.azure</groupId>
- <artifactId>azure-storage-queue</artifactId>
- <version>10.0.0-Preview</version>
</dependency>
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-admin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>compile</scope>
</dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>jurt</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>ridl</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>juh</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>unoil</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.7.2</version>
- </dependency>
+
<dependency>
<groupId>com.lx</groupId>
<artifactId>product-server-tool-flow</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-tool-flow</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>compile</scope>
</dependency>
</dependencies>
-
+
</project>
diff --git a/product-server-project-contract/src/main/resources/META-INF/MANIFEST.MF b/product-server-project-contract/src/main/resources/META-INF/MANIFEST.MF
deleted file mode 100644
index 254272e..0000000
--- a/product-server-project-contract/src/main/resources/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Class-Path:
-
diff --git a/product-server-project-contract/src/main/resources/file.properties b/product-server-project-contract/src/main/resources/file.properties
deleted file mode 100644
index c86362d..0000000
--- a/product-server-project-contract/src/main/resources/file.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-source_domain=https://www.baidu.com
-default_domain=https://lx.blob.core.windows.net
-allowed_file_type=doc,docx,xls,xlsx,ppt,pptx,jpg,png,bmp,csv,pdf
diff --git a/product-server-project-customer/.factorypath b/product-server-project-customer/.factorypath
deleted file mode 100644
index 249f9a3..0000000
--- a/product-server-project-customer/.factorypath
+++ /dev/null
@@ -1,281 +0,0 @@
-<factorypath>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-s3/1.11.421/aws-java-sdk-s3-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-kms/1.11.421/aws-java-sdk-kms-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/jmespath-java/1.11.421/jmespath-java-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-core/1.11.421/aws-java-sdk-core-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.9.8/jackson-dataformat-cbor-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpmime/4.5.7/httpmime-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/easyexcel/2.2.6/easyexcel-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cglib/cglib/3.1/cglib-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ow2/asm/asm/4.2/asm-4.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ehcache/ehcache/3.6.3/ehcache-3.6.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/sendgrid-java/4.3.0/sendgrid-java-4.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/java-http-client/4.1.0/java-http-client-4.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-identity/1.1.0/azure-identity-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j/1.6.1/msal4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j-persistence-extension/1.0.0/msal4j-persistence-extension-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna/4.5.2/jna-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/content-type/2.0/content-type-2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/nimbus-jose-jwt/8.8/nimbus-jose-jwt-8.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/nanohttpd/nanohttpd/2.3.1/nanohttpd-2.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna-platform/4.5.2/jna-platform-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2/2.1.4/KeePassJava2-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdb/2.1.4/KeePassJava2-kdb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/database/2.1.4/database-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/madgag/spongycastle/core/1.54.0.0/core-1.54.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jetbrains/annotations/15.0/annotations-15.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-dom/2.1.4/KeePassJava2-dom-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdbx/2.1.4/KeePassJava2-kdbx-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-jaxb/2.1.4/KeePassJava2-jaxb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-simple/2.1.4/KeePassJava2-simple-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/simpleframework/simple-xml/2.7.1/simple-xml-2.7.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax/1.2.0/stax-1.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xpp3/xpp3/1.1.3.3/xpp3-1.1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/aalto-xml/1.0.0/aalto-xml-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage/5.0.0/azure-storage-5.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-keyvault-core/0.8.0/azure-keyvault-core-0.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/hutool/hutool-all/5.7.9/hutool-all-5.7.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-jexl3/3.1/commons-jexl3-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-core/1.0.0-releases/product-server-core-1.0.0-releases.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-blob/12.8.0/azure-storage-blob-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core/1.7.0/azure-core-1.7.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-tcnative-boringssl-static/2.0.20.Final/netty-tcnative-boringssl-static-2.0.20.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-common/12.8.0/azure-storage-common-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core-http-netty/1.5.4/azure-core-http-netty-1.5.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-unix-common/4.1.33.Final/netty-transport-native-unix-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-epoll/4.1.33.Final/netty-transport-native-epoll-4.1.33.Final-linux-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-kqueue/4.1.33.Final/netty-transport-native-kqueue-4.1.33.Final-osx-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-internal-avro/12.0.0/azure-storage-internal-avro-12.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-file-share/12.6.0/azure-storage-file-share-12.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-blob/10.1.0/azure-storage-blob-10.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/rest/v2/client-runtime/2.0.0/client-runtime-2.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/reactivex/rxjava2/rxjava/2.2.6/rxjava-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-queue/10.0.0-Preview/azure-storage-queue-10.0.0-Preview.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-mail/2.1.3.RELEASE/spring-boot-starter-mail-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-boot-starter/2.2.0/mybatis-plus-boot-starter-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus/2.2.0/mybatis-plus-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-support/2.2.0/mybatis-plus-support-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-core/2.2.0/mybatis-plus-core-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jsqlparser/jsqlparser/1.1/jsqlparser-1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-generate/2.2.0/mybatis-plus-generate-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-starter/1.2.7/pagehelper-spring-boot-starter-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-autoconfigure/1.2.7/pagehelper-spring-boot-autoconfigure-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper/5.1.6/pagehelper-5.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queryparser/8.3.0/lucene-queryparser-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-core/8.3.0/lucene-core-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queries/8.3.0/lucene-queries-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-sandbox/8.3.0/lucene-sandbox-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-highlighter/8.3.0/lucene-highlighter-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-memory/8.3.0/lucene-memory-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-smartcn/8.3.0/lucene-analyzers-smartcn-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-common/8.3.0/lucene-analyzers-common-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/bestwu/ik-analyzers/5.1.0/ik-analyzers-5.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-solr/2.4.0/mmseg4j-solr-2.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-core/1.10.0/mmseg4j-core-1.10.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/artofsolving/jodconverter/2.2.2/jodconverter-2.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/artofsolving/jodconverter/jodconverter-core/3.0-beta-4/jodconverter-core-3.0-beta-4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-base/4.1.3/easypoi-base-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-annotation/4.1.3/easypoi-annotation-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/pdfbox/2.0.6/pdfbox-2.0.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/fontbox/2.0.6/fontbox-2.0.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/eclipse/birt/runtime/3_7_1/com.lowagie.text/2.1.7/com.lowagie.text-2.1.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/jurt/3.0.1/jurt-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/ridl/3.0.1/ridl-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/juh/3.0.1/juh-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/unoil/3.0.1/unoil-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-io/commons-io/2.4/commons-io-2.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-net/commons-net/3.7.2/commons-net-3.7.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/redis/clients/jedis/2.9.0/jedis-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-pool2/2.6.1/commons-pool2-2.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-data-redis/2.1.3.RELEASE/spring-boot-starter-data-redis-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-redis/2.1.5.RELEASE/spring-data-redis-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-keyvalue/2.1.5.RELEASE/spring-data-keyvalue-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-commons/2.1.5.RELEASE/spring-data-commons-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-oxm/5.1.5.RELEASE/spring-oxm-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context-support/5.1.5.RELEASE/spring-context-support-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/lettuce/lettuce-core/5.1.4.RELEASE/lettuce-core-5.1.4.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/json-smart/2.3/json-smart-2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/jstl/1.2/jstl-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/de/ruedigermoeller/fst/2.57/fst-2.57.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-text/1.3/commons-text-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/bladejava/blade-patchca/1.1.0/blade-patchca-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.6/lombok-1.18.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/penggle/kaptcha/2.3.2/kaptcha-2.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/jhlabs/filters/2.0.235-1/filters-2.0.235-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/drewnoakes/metadata-extractor/2.11.0/metadata-extractor-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/core/3.3.2/core-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/javase/3.3.2/javase-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/beust/jcommander/1.72/jcommander-1.72.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jai-imageio/jai-imageio-core/1.3.1/jai-imageio-core-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant/1.9.7/ant-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant-launcher/1.9.7/ant-launcher-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sf/jmimemagic/jmimemagic/0.1.5/jmimemagic-0.1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/log4j/log4j/1.2.8/log4j-1.2.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.9.8/jackson-dataformat-xml-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.8/jackson-module-jaxb-annotations-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpclient/4.5.7/httpclient-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jsoup/jsoup/1.11.3/jsoup-1.11.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-email/1.5/commons-email-1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/mail/javax.mail/1.6.2/javax.mail-1.6.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-fileupload/commons-fileupload/1.3.3/commons-fileupload-1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/activation/activation/1.1.1/activation-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-websocket/2.1.3.RELEASE/spring-boot-starter-websocket-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-messaging/5.1.5.RELEASE/spring-messaging-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-websocket/5.1.5.RELEASE/spring-websocket-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/eu/bitwalker/UserAgentUtils/1.21/UserAgentUtils-1.21.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/coobird/thumbnailator/0.4.8/thumbnailator-0.4.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-jpeg/3.4.1/imageio-jpeg-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-core/3.4.1/imageio-core-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-metadata/3.4.1/imageio-metadata-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-lang/3.4.1/common-lang-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-io/3.4.1/common-io-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-image/3.4.1/common-image-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi/3.17/poi-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax-api/1.0.1/stax-api-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-scratchpad/3.17/poi-scratchpad-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/belerweb/pinyin4j/2.5.1/pinyin4j-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/junit/junit/4.12/junit-4.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/adobe/xmp/xmpcore/5.1.2/xmpcore-5.1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/auth0/java-jwt/3.3.0/java-jwt-3.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/fastjson/1.2.56/fastjson-1.2.56.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sourceforge/nekohtml/nekohtml/1.9.22/nekohtml-1.9.22.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xerces/xercesImpl/2.11.0/xercesImpl-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-thymeleaf/2.1.3.RELEASE/spring-boot-starter-thymeleaf-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf-spring5/3.0.11.RELEASE/thymeleaf-spring5-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/extras/thymeleaf-extras-java8time/3.0.3.RELEASE/thymeleaf-extras-java8time-3.0.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf/3.0.11.RELEASE/thymeleaf-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ognl/ognl/3.1.12/ognl-3.1.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/attoparser/attoparser/2.0.5.RELEASE/attoparser-2.0.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/theborakompanioni/thymeleaf-extras-shiro/1.2.1/thymeleaf-extras-shiro-1.2.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/bouncycastle/bcprov-jdk15/1.46/bcprov-jdk15-1.46.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-annotations/1.5.20/swagger-annotations-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-models/1.5.20/swagger-models-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/guava/guava/20.0/guava-20.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/druid/1.1.24/druid-1.1.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/fusesource/sigar/1.6.4/sigar-1.6.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/rabbitmq/amqp-client/5.6.0/amqp-client-5.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.0/mybatis-spring-boot-starter-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.0/mybatis-spring-boot-autoconfigure-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis/3.4.4/mybatis-3.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-starter/2.0.2/mapper-spring-boot-starter-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-core/1.0.2/mapper-core-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/persistence/persistence-api/1.0/persistence-api-1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-base/1.0.1/mapper-base-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-weekend/1.1.3/mapper-weekend-1.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring/1.0.1/mapper-spring-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-extra/1.0.1/mapper-extra-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-autoconfigure/2.0.2/mapper-spring-boot-autoconfigure-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/logback/logzio-logback-appender/1.0.24/logzio-logback-appender-1.0.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/sender/logzio-sender/1.1.1/logzio-sender-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/mashape/unirest/unirest-java/1.4.9/unirest-java-1.4.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore-nio/4.4.11/httpcore-nio-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/json/json/20160212/json-20160212.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-client/1.19.4/jersey-client-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="PLUGIN" id="org.eclipse.jst.ws.annotations.core" enabled="false" runInBatchMode="false"/>
-</factorypath>
diff --git a/product-server-project-customer/pom.xml b/product-server-project-customer/pom.xml
deleted file mode 100644
index c70de5c..0000000
--- a/product-server-project-customer/pom.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>product-project-server-customer</artifactId>
- <name>product-project-server-customer</name>
- <description>product-project-server-customer</description>
- <dependencies>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-common</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-util</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <!--releases -->
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-core</artifactId>
- <version>1.0.0-releases</version>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>12.8.0</version>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-file-share</artifactId>
- <version>12.6.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>10.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.azure</groupId>
- <artifactId>azure-storage-queue</artifactId>
- <version>10.0.0-Preview</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-admin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>jurt</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>ridl</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>juh</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>unoil</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.7.2</version>
- </dependency>
- </dependencies>
-
-</project>
diff --git a/product-server-project-customer/src/main/resources/META-INF/MANIFEST.MF b/product-server-project-customer/src/main/resources/META-INF/MANIFEST.MF
deleted file mode 100644
index 254272e..0000000
--- a/product-server-project-customer/src/main/resources/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Class-Path:
-
diff --git a/product-server-project-customer/src/main/resources/file.properties b/product-server-project-customer/src/main/resources/file.properties
deleted file mode 100644
index a2324e5..0000000
--- a/product-server-project-customer/src/main/resources/file.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-source_domain=https://www.baidu.com
-default_domain=https://mrcbase.blob.core.windows.net
-allowed_file_type=doc,docx,xls,xlsx,ppt,pptx,jpg,png,bmp,csv,pdf
diff --git a/product-server-project-web/.factorypath b/product-server-project-web/.factorypath
deleted file mode 100644
index 0b858a7..0000000
--- a/product-server-project-web/.factorypath
+++ /dev/null
@@ -1,292 +0,0 @@
-<factorypath>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-s3/1.11.421/aws-java-sdk-s3-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-kms/1.11.421/aws-java-sdk-kms-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/jmespath-java/1.11.421/jmespath-java-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/amazonaws/aws-java-sdk-core/1.11.421/aws-java-sdk-core-1.11.421.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.9.8/jackson-dataformat-cbor-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpmime/4.5.7/httpmime-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/easyexcel/2.2.6/easyexcel-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cglib/cglib/3.1/cglib-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ow2/asm/asm/4.2/asm-4.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/ehcache/ehcache/3.6.3/ehcache-3.6.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-blob/12.8.0/azure-storage-blob-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core/1.7.0/azure-core-1.7.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-tcnative-boringssl-static/2.0.20.Final/netty-tcnative-boringssl-static-2.0.20.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-common/12.8.0/azure-storage-common-12.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-core-http-netty/1.5.4/azure-core-http-netty-1.5.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-unix-common/4.1.33.Final/netty-transport-native-unix-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-epoll/4.1.33.Final/netty-transport-native-epoll-4.1.33.Final-linux-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport-native-kqueue/4.1.33.Final/netty-transport-native-kqueue-4.1.33.Final-osx-x86_64.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-internal-avro/12.0.0/azure-storage-internal-avro-12.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-identity/1.1.0/azure-identity-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j/1.6.1/msal4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/msal4j-persistence-extension/1.0.0/msal4j-persistence-extension-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna/4.5.2/jna-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/content-type/2.0/content-type-2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/nimbusds/nimbus-jose-jwt/8.8/nimbus-jose-jwt-8.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/nanohttpd/nanohttpd/2.3.1/nanohttpd-2.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/java/dev/jna/jna-platform/4.5.2/jna-platform-4.5.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2/2.1.4/KeePassJava2-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdb/2.1.4/KeePassJava2-kdb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/database/2.1.4/database-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/madgag/spongycastle/core/1.54.0.0/core-1.54.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jetbrains/annotations/15.0/annotations-15.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-dom/2.1.4/KeePassJava2-dom-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-kdbx/2.1.4/KeePassJava2-kdbx-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-jaxb/2.1.4/KeePassJava2-jaxb-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/linguafranca/pwdb/KeePassJava2-simple/2.1.4/KeePassJava2-simple-2.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/simpleframework/simple-xml/2.7.1/simple-xml-2.7.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax/1.2.0/stax-1.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xpp3/xpp3/1.1.3.3/xpp3-1.1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/aalto-xml/1.0.0/aalto-xml-1.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage/5.0.0/azure-storage-5.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-keyvault-core/0.8.0/azure-keyvault-core-0.8.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/hutool/hutool-all/5.7.9/hutool-all-5.7.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-jexl3/3.1/commons-jexl3-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-boot-starter/2.2.0/mybatis-plus-boot-starter-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus/2.2.0/mybatis-plus-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-support/2.2.0/mybatis-plus-support-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-core/2.2.0/mybatis-plus-core-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jsqlparser/jsqlparser/1.1/jsqlparser-1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/baomidou/mybatis-plus-generate/2.2.0/mybatis-plus-generate-2.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context-support/5.1.5.RELEASE/spring-context-support-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/quartz-scheduler/quartz-jobs/2.3.0/quartz-jobs-2.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/quartz-scheduler/quartz/2.3.0/quartz-2.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/mchange/mchange-commons-java/0.2.11/mchange-commons-java-0.2.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/c3p0/c3p0/0.9.1.2/c3p0-0.9.1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-mail/2.1.3.RELEASE/spring-boot-starter-mail-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/picc-server-admin/1.0.0-SNAPSHOT/picc-server-admin-1.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/itextpdf/itextpdf/5.5.13/itextpdf-5.5.13.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/pdfbox/2.0.25/pdfbox-2.0.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/fontbox/2.0.25/fontbox-2.0.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/pdfbox/pdfbox-app/2.0.25/pdfbox-app-2.0.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/azure/azure-storage-file-share/12.6.0/azure-storage-file-share-12.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-blob/10.1.0/azure-storage-blob-10.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/rest/v2/client-runtime/2.0.0/client-runtime-2.0.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/reactivex/rxjava2/rxjava/2.2.6/rxjava-2.2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/microsoft/azure/azure-storage-queue/10.0.0-Preview/azure-storage-queue-10.0.0-Preview.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/jurt/3.0.1/jurt-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/ridl/3.0.1/ridl-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/juh/3.0.1/juh-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/openoffice/unoil/3.0.1/unoil-3.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-net/commons-net/3.7.2/commons-net-3.7.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-starter/1.2.7/pagehelper-spring-boot-starter-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper-spring-boot-autoconfigure/1.2.7/pagehelper-spring-boot-autoconfigure-1.2.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/pagehelper/pagehelper/5.1.6/pagehelper-5.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queryparser/8.3.0/lucene-queryparser-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-core/8.3.0/lucene-core-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-queries/8.3.0/lucene-queries-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-sandbox/8.3.0/lucene-sandbox-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-highlighter/8.3.0/lucene-highlighter-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-memory/8.3.0/lucene-memory-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-smartcn/8.3.0/lucene-analyzers-smartcn-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/lucene/lucene-analyzers-common/8.3.0/lucene-analyzers-common-8.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/bestwu/ik-analyzers/5.1.0/ik-analyzers-5.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-solr/2.4.0/mmseg4j-solr-2.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/chenlb/mmseg4j/mmseg4j-core/1.10.0/mmseg4j-core-1.10.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/artofsolving/jodconverter/2.2.2/jodconverter-2.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/artofsolving/jodconverter/jodconverter-core/3.0-beta-4/jodconverter-core-3.0-beta-4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-base/4.1.3/easypoi-base-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/cn/afterturn/easypoi-annotation/4.1.3/easypoi-annotation-4.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/eclipse/birt/runtime/3_7_1/com.lowagie.text/2.1.7/com.lowagie.text-2.1.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-core/1.0.0-releases/product-server-core-1.0.0-releases.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/sendgrid-java/4.0.1/sendgrid-java-4.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sendgrid/java-http-client/4.1.0/java-http-client-4.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-system/1.0.0-SNAPSHOT/product-server-system-1.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-tool-form/1.0.0-SNAPSHOT/product-server-tool-form-1.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/lx/product-server-tool-form-tree/1.0.0-SNAPSHOT/product-server-tool-form-tree-1.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/spring/spring-server-master/1.2.6.6/spring-server-master-1.2.6.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/redis/clients/jedis/2.9.0/jedis-2.9.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-pool2/2.6.1/commons-pool2-2.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-data-redis/2.1.3.RELEASE/spring-boot-starter-data-redis-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-redis/2.1.5.RELEASE/spring-data-redis-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-keyvalue/2.1.5.RELEASE/spring-data-keyvalue-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/data/spring-data-commons/2.1.5.RELEASE/spring-data-commons-2.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-oxm/5.1.5.RELEASE/spring-oxm-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/lettuce/lettuce-core/5.1.4.RELEASE/lettuce-core-5.1.4.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/json-smart/2.3/json-smart-2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/servlet/jstl/1.2/jstl-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/de/ruedigermoeller/fst/2.57/fst-2.57.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-text/1.3/commons-text-1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-io/commons-io/2.6/commons-io-2.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/bladejava/blade-patchca/1.1.0/blade-patchca-1.1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.6/lombok-1.18.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/penggle/kaptcha/2.3.2/kaptcha-2.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/jhlabs/filters/2.0.235-1/filters-2.0.235-1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/drewnoakes/metadata-extractor/2.11.0/metadata-extractor-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/core/3.3.2/core-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/zxing/javase/3.3.2/javase-3.3.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/beust/jcommander/1.72/jcommander-1.72.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/jai-imageio/jai-imageio-core/1.3.1/jai-imageio-core-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant/1.9.7/ant-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/ant/ant-launcher/1.9.7/ant-launcher-1.9.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sf/jmimemagic/jmimemagic/0.1.5/jmimemagic-0.1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/log4j/log4j/1.2.8/log4j-1.2.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.9.8/jackson-dataformat-xml-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.8/jackson-module-jaxb-annotations-2.9.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpclient/4.5.7/httpclient-4.5.7.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/jsoup/jsoup/1.11.3/jsoup-1.11.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-email/1.5/commons-email-1.5.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/mail/javax.mail/1.6.2/javax.mail-1.6.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/commons-fileupload/commons-fileupload/1.3.3/commons-fileupload-1.3.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/activation/activation/1.1.1/activation-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-websocket/2.1.3.RELEASE/spring-boot-starter-websocket-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-messaging/5.1.5.RELEASE/spring-messaging-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-websocket/5.1.5.RELEASE/spring-websocket-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/eu/bitwalker/UserAgentUtils/1.21/UserAgentUtils-1.21.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/coobird/thumbnailator/0.4.8/thumbnailator-0.4.8.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-jpeg/3.4.1/imageio-jpeg-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-core/3.4.1/imageio-core-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/imageio/imageio-metadata/3.4.1/imageio-metadata-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-lang/3.4.1/common-lang-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-io/3.4.1/common-io-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/twelvemonkeys/common/common-image/3.4.1/common-image-3.4.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi/3.17/poi-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/stax/stax-api/1.0.1/stax-api-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/poi/poi-scratchpad/3.17/poi-scratchpad-3.17.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/belerweb/pinyin4j/2.5.1/pinyin4j-2.5.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/junit/junit/4.12/junit-4.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/adobe/xmp/xmpcore/5.1.2/xmpcore-5.1.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/auth0/java-jwt/3.3.0/java-jwt-3.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/fastjson/1.2.56/fastjson-1.2.56.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/net/sourceforge/nekohtml/nekohtml/1.9.22/nekohtml-1.9.22.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/xerces/xercesImpl/2.11.0/xercesImpl-2.11.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-thymeleaf/2.1.3.RELEASE/spring-boot-starter-thymeleaf-2.1.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf-spring5/3.0.11.RELEASE/thymeleaf-spring5-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/extras/thymeleaf-extras-java8time/3.0.3.RELEASE/thymeleaf-extras-java8time-3.0.3.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/thymeleaf/thymeleaf/3.0.11.RELEASE/thymeleaf-3.0.11.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/ognl/ognl/3.1.12/ognl-3.1.12.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/attoparser/attoparser/2.0.5.RELEASE/attoparser-2.0.5.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/github/theborakompanioni/thymeleaf-extras-shiro/1.2.1/thymeleaf-extras-shiro-1.2.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/bouncycastle/bcprov-jdk15/1.46/bcprov-jdk15-1.46.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-annotations/1.5.20/swagger-annotations-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/swagger/swagger-models/1.5.20/swagger-models-1.5.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/google/guava/guava/20.0/guava-20.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/alibaba/druid/1.1.24/druid-1.1.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/fusesource/sigar/1.6.4/sigar-1.6.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/rabbitmq/amqp-client/5.6.0/amqp-client-5.6.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.0/mybatis-spring-boot-starter-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.0/mybatis-spring-boot-autoconfigure-1.3.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis/3.4.4/mybatis-3.4.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-starter/2.0.2/mapper-spring-boot-starter-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-core/1.0.2/mapper-core-1.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/persistence/persistence-api/1.0/persistence-api-1.0.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-base/1.0.1/mapper-base-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-weekend/1.1.3/mapper-weekend-1.1.3.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring/1.0.1/mapper-spring-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-extra/1.0.1/mapper-extra-1.0.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/tk/mybatis/mapper-spring-boot-autoconfigure/2.0.2/mapper-spring-boot-autoconfigure-2.0.2.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/logback/logzio-logback-appender/1.0.24/logzio-logback-appender-1.0.24.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/io/logz/sender/logzio-sender/1.1.1/logzio-sender-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/mashape/unirest/unirest-java/1.4.9/unirest-java-1.4.9.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/apache/httpcomponents/httpcore-nio/4.4.11/httpcore-nio-4.4.11.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/org/json/json/20160212/json-20160212.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-client/1.19.4/jersey-client-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="VARJAR" id="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar" enabled="true" runInBatchMode="false"/>
- <factorypathentry kind="PLUGIN" id="org.eclipse.jst.ws.annotations.core" enabled="false" runInBatchMode="false"/>
-</factorypath>
diff --git a/product-server-project-web/LicenseKey.dat b/product-server-project-web/LicenseKey.dat
deleted file mode 100644
index 199b747..0000000
--- a/product-server-project-web/LicenseKey.dat
+++ /dev/null
@@ -1 +0,0 @@
-0D604FB9962C4C92EE05423CC7A4D83B2F51AD296A1845FE9674E9EB1A259A3B92F1CF6A22B14AFB171D244EE027AA49EDBD659E9390E2AE8BDFEDD347C16A27C236B0E93F48B9882DAB77E8A577581398C6DE62A64505C06A36D83CC0848A5CDE8E0B47DB51E3DC6A342E76B06F90448FFB9B21777EE11EA4F48AEA04C192AD562BF7A6E1116B8E181EAC7D59E2271845DDCE9CC0925CC0BEB8657399797290284F1875963C5E276F0611450168B73B70DEFC2C8128101826DB3CA4DF83EB0035EAE78E748CB268E16EF0046B31E1436ACBD710743D06F11930F3D7AE7F44055CF11560C1CFF099A8CB2B5AFB832D25995DB77C7B23C0C7E5A88503301A2B1BE2BFD04F3A69B68514A2EDFB6900B0C32C24D62CBD2E92412534801D0BF120446803BF895CADCEFC49BCC879E674978DA9FB516D2476CD03FF06F6A28D7F7175D40D1BADB253E3B197B95B2AC2B2DF0EC1FE389F8EF89CEE14EDE533C2AE00CD090F690C525F2D385D9FF5900DABC8A67D44877E82A34E1ED4D6D776E48DBBCFA3DBCB7A5FB8497D1B049BDBB9B7D76042114CB918CD3A0FC1705DB18CC7AD26C2381B6520BE5116066388A84B22EC244550C8934A071A6753A013933DBCE243AC5BA39CA8D8895ACE050B1E67D66B4398D88CF32ABAF969E668024FFBCC2A255BCE4EF7E06105F92D69388BFB4B43F52D41DFC368F63A2564677F1DFB819DD0
\ No newline at end of file
diff --git a/product-server-project-web/doc/package-list b/product-server-project-web/doc/package-list
deleted file mode 100644
index 189bb1e..0000000
--- a/product-server-project-web/doc/package-list
+++ /dev/null
@@ -1,8 +0,0 @@
-com.mrc.base.core.config
-com.mrc.base.core.controller.support
-com.mrc.base.core.dao
-com.mrc.base.core.entity
-com.mrc.base.core.service.support
-com.mrc.base.core.uitl
-com.mrc.base.module.sys.entity
-com.mrc.base.module.sys.service
diff --git a/product-server-project-web/doc/script.js b/product-server-project-web/doc/script.js
deleted file mode 100644
index b346356..0000000
--- a/product-server-project-web/doc/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
- }
- }
-}
diff --git a/product-server-project-web/doc/sigar-amd64-winnt.dll b/product-server-project-web/doc/sigar-amd64-winnt.dll
deleted file mode 100644
index 1ec8a03..0000000
--- a/product-server-project-web/doc/sigar-amd64-winnt.dll
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/doc/sigar-x86-winnt.dll b/product-server-project-web/doc/sigar-x86-winnt.dll
deleted file mode 100644
index 6afdc01..0000000
--- a/product-server-project-web/doc/sigar-x86-winnt.dll
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/doc/stylesheet.css b/product-server-project-web/doc/stylesheet.css
deleted file mode 100644
index 98055b2..0000000
--- a/product-server-project-web/doc/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4A6782;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
- font-style:italic;
-}
-h4 {
- font-size:13px;
-}
-h5 {
- font-size:12px;
-}
-h6 {
- font-size:11px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-table tr td dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:11px;
- z-index:200;
- margin-top:-9px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-color:#4D7A97;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:11px;
- margin:0;
-}
-.topNav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.bottomNav {
- margin-top:10px;
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.subNav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.navBarCell1Rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skipNav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader span{
- margin-right:15px;
-}
-.indexHeader h1 {
- font-size:13px;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:12px;
-}
-.indexContainer h2 {
- font-size:13px;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
- padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:5px 0 10px 0px;
- font-size:14px;
- font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #ededed;
- background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
- width:100%;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
-}
-.overviewSummary, .memberSummary {
- padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- padding-top:10px;
- padding-left:1px;
- margin:0px;
- white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-.memberSummary caption span.activeTableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- height:16px;
-}
-.memberSummary caption span.tableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#4D7A97;
- height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
- padding-top:0px;
- padding-left:0px;
- padding-right:0px;
- background-image:none;
- float:none;
- display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
- display:none;
- width:5px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- background-color:#4D7A97;
- float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
- text-align:left;
- padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
- vertical-align:top;
- padding-right:0px;
- padding-top:8px;
- padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
- background:#dee3e9;
- text-align:left;
- padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
- white-space:nowrap;
- font-size:13px;
-}
-td.colLast, th.colLast {
- font-size:13px;
-}
-td.colOne, th.colOne {
- font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
- width:25%;
- vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-.tableSubHeadingColor {
- background-color:#EEEEFF;
-}
-.altColor {
- background-color:#FFFFFF;
-}
-.rowColor {
- background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- font-style:normal;
-}
-
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
- padding-top:0px;
-}
-
-
-td.colLast a {
- padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:3px 10px 2px 0px;
- color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
- font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
- font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
- font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
- padding-bottom:0px;
-}
diff --git "a/product-server-project-web/doc/\347\263\273\347\273\237\350\256\276\350\256\241" "b/product-server-project-web/doc/\347\263\273\347\273\237\350\256\276\350\256\241"
deleted file mode 100644
index 3b1fc50..0000000
--- "a/product-server-project-web/doc/\347\263\273\347\273\237\350\256\276\350\256\241"
+++ /dev/null
@@ -1,860 +0,0 @@
-1.鏁版嵁婧�
- 蹇呴』閰嶇疆榛樿鐨勬暟鎹簮锛屽悕绉板繀椤讳负default,瑙乤pplication.properties
- sourceName=default
-2.琛ㄨ璁�
- id瀛楁: 绫诲瀷=bigint 锛岄暱搴�11
- uuid瀛楁銆乽uid寮曠敤瀛楁锛氾紝闀垮害閮芥槸80
- 瀛楁绫诲瀷闄や簡閫氱敤String...澶栵紝杩樻湁涓�涓被鍨�:parentuuid,鐢ㄦ瀛楁琛ㄧず涓诲瓙琛ㄧ殑鍏崇郴锛�
- 鍚屾椂杩樺繀椤婚厤鍏宠仈鐨勭埗琛ㄥ悕绉帮紝鍚屼竴涓叧鑱旂埗琛紝鍙兘閰嶄竴涓猵arentuuid绫诲瀷鐨勫瓧娈碉紝濡傛灉鏄櫘閫氫富澶栭敭鍏宠仈锛屽氨涓嶇敤parentuuid
- 姣斿锛歜utton琛� 鐨勫瓧娈靛畾涔夛紝鐖惰〃function
- 瀛楁鍚� 瀛楁绫诲瀷 鍏宠仈涓昏〃
- id
- uuid
- ......
- function_uuid parentuuid mrbase_sys_datamodel_table(淇濆瓨琛ㄧ殑uuid锛屾樉绀鸿〃鐨勫悕绉帮紝榛樿鍏宠仈涓昏〃鐨剈uid)
- 瀛楁鐨勯暱搴︿负涓嬫媺閫夋嫨锛屾牴鎹笉鍚岀殑鏁版嵁绫诲瀷锛屽畾涔変笉鍚岀殑闀垮害閫夐」锛屽锛�10銆�20銆�50銆�100绛�
-
- 瀛楁绫诲瀷锛�
- 闄ゆ爣鍑嗙殑string datetime int number ,杩樻湁鐗规畩锛歱arentuuid(涓诲瓙琛ㄥ叧绯伙紝璁板綍鐖惰〃uuid)銆乧ode(缂栫爜瀛楁 000-000-002)銆乻erialNumber(GXD201209020001)
- 瀛楁绫诲瀷=parentuuid鏃讹紝蹇呴』field_relation_table瀛楁濉啓鐖惰〃鐨剈uid鍚﹀垯涔熶笉鑳戒綔涓轰富瀛愯〃淇濆瓨
-
- 鎵�鏈夌被鍨嬶細string銆乮nt銆乶umber(灏忔暟)銆乨atetime銆乸arentuuid銆乧ode銆乻erialNumber銆乮dcard銆乽rl銆乮p銆乵ac銆乪mail銆乽serid銆乷rgUuid
-
-3.缂撳瓨鏁版嵁
- * 缂撳瓨閰嶇疆琛細SYS_CACHE_CONFIG
- * 瀛楁锛欼D銆乽uid銆乧ache_name銆乀ABLENAME(S200)銆丆ACHEFIELD(鍒嗙骇缂撳瓨瀛楁锛岄�楀彿鍒嗛殧),FIELDS(S4000,瀛楁鍚嶏紝閫楀彿鍒嗛殧)銆乫ilter(S4000)銆佸娉ㄨ鏄�....
- * cache_name:鍞竴
- * 甯哥敤鏁版嵁銆佸熀纭�鏁版嵁缂撳瓨
- * 閫氱敤缂撳瓨锛氶�氳繃閰嶇疆琛ㄣ�佸瓧娈碉紙澶氫釜锛夈�佹煡璇㈡潯浠舵潵鎸囧畾瑕佺紦瀛樼殑鏁版嵁鍐呭锛岄噰鐢∕ap灏佽锛宬ey=cache_name锛屽��=DataTableEntity
- * 鐗规畩缂撳瓨锛氬崟鐙啓鏂规硶鍔犺浇鏁版嵁骞跺鐞嗘暟鎹紝灏佽鍚岄�氱敤缂撳瓨涓�鏍�
- * 鏀寔鍒嗙粍缂撳瓨锛屾棤闄愮骇,鍒嗙粍瀛楁蹇呴』鍦ㄧ紦瀛樺瓧娈甸噷闈�
- 鏀寔鍔犺浇瀛愯〃鏁版嵁
- * 缂撳瓨鏁版嵁锛屽瓨鍦ㄦ暟鎹笉涓�鑷撮棶棰橈紝褰撲袱涓繘绋嬪悓鏃跺涓�涓〃鐨勭紦瀛樿繘琛岃鍜屽啓鏃�---------------
- * 鏂板銆佷慨鏀广�佸垹闄ょ紦瀛樿〃鏃讹紝瑕佹洿鏂扮紦瀛�-------------------------------------
- * 鍒濆鏁版嵁
- table_name=mrbase_sys_datamodel_table
- table_name=mrbase_sys_datamodel_field | cache_fields=* | group_field=table_uuid
- table_name=mrbase_sys_datamodel_field | cache_fields=* | filter=field_type='parentUuid'
- table_name=mrbase_function_permission | cache_fields=role_uuid,function_uuid,button_uuid | group_field=role_uuid
-
- 鏌ヨ鏂规硶锛�
- 鏈夊垎缁勶紝鍒嗙粍瀛楁锛屽搴斿��
- 瀵瑰簲缂撳瓨涓搴旂殑鍒嗙粍瀛楁锛屾暣涓弬鏁颁负杩欙紝琛ㄧず娌℃湁鍒嗙粍锛屽彧鑳藉悗闈笉涓虹┖锛屼笉鑳藉墠闈负绌猴紝渚嬪锛�
- 缂撳瓨鐨勫垎缁勫瓧娈碉細field1銆乫ield2銆乫ield3 ,鑾峰彇鏃跺弬鏁板�硷紝鍙兘涓夌鎯呭喌锛歿value1,null,null}銆亄value1,value2,null}銆亄value1,value2,value2},
- 涓嶈兘鍑虹幇 {value1,null,value3} 銆亄null,null,value3} 銆亄null,value2,value3} 绛夋儏鍐�
- 濡傦細
- DataTableEntity dt=DataPoolCacheImpl.getInstance().getCacheData("鎵�鏈夊瓧娈典俊鎭苟鎸夎〃鍒嗙粍",new String[] {tableUuid});
- 鏈垎缁勶細
- DataTableEntity table=DataPoolCacheImpl.getInstance().getCacheData("鎵�鏈夎〃淇℃伅");
-
- 锛�1锛塺edis宸ュ叿绫�
- 閰嶇疆鏂囦欢锛歮rc-base-server\mrc-base-server-cache\src\main\resource\cache.properties
- 绫伙細com.mrc.base.cache.util.RedisUtil
- 浠嬬粛锛�
- 鍏ㄩ儴涓洪潤鎬佹柟娉曪紝鏃犻渶娉ㄥ叆锛屽寘鍚簡瀵筴ey浠ュ強5绉嶅熀鏈被鍨嬶紙string,hash,list,set,zset锛夌殑鎿嶄綔锛屾柟娉曞悕绉扮粡杩囩畝鍖栧拰褰掍竴鍖栵紝涓庡師鐢熷懡浠ょ◢鏈変笉鍚岋紱
- 鎸夌収key,string,hash,list,set,zset鐨勯『搴忔帓鍒楁柟娉曪紝涓嶅悓绫诲瀷闂村瓨鍦ㄦ敞閲婂垎鍓诧紝鑻ユ槸鍚庣画鏈夋柊澧烇紝搴斿綋鍐欏湪瀵瑰簲鐨勮寖鍥村唴锛�
- 鏂板/淇敼绫荤殑鏂规硶浠dd/set寮�澶达紝鍚庨潰绱ц窡绫诲瀷锛屾渶鍚庤窡鏂规硶鐗规�э紱
- 鑾峰彇绫绘柟娉曚互get寮�澶达紝鍚庨潰绱ц窡绫诲瀷锛屾渶鍚庤窡鏂规硶鐗规�э紱锛堢壒娈婄殑锛屾眰鍙栦氦宸苟闆嗗苟瀛樺偍杩斿洖鐨勬槸涓暟锛夛紱
- 鍒ゅ畾鏄惁瀛樺湪涓篹xists寮�澶达紝鍚庨潰绱ц窡绫诲瀷锛�
- 鍒犻櫎绫绘柟娉曚互del寮�澶达紝鍚庨潰绱ц窡绫诲瀷锛屾渶鍚庤窡鏂规硶鐗规�э紱
- 鐩稿鐗规畩鐨勫懡鍚�-clearOutTime锛堢Щ闄よ秴鏃舵椂闂达級锛宺eplaceListAimValue锛坙ist-鏇挎崲鎸囧畾涓嬫爣鐨勫�硷級锛宮oveSet锛坰et-绉诲姩鍊煎埌鎸囧畾key鐨剆et涓級
- 娴嬭瘯绫伙細com.mrc.base.cache.TestRedisUtil
- 浠嬬粛锛�
- 闄ょ涓�涓负鑾峰彇鏁版嵁鏂规硶澶栵紝鍚庨潰鍧囦负鍗曞厓娴嬭瘯锛屽彲浠ュ湪杩欓噷鎵惧埌瀵瑰簲鐨勭ず渚嬩唬鐮侊紱
- 闄ら儴鍒嗙被杞崲鐨勯噸杞芥柟娉曟病鏈夊啓鍗曞厓娴嬭瘯锛屾湁浜涢噸杞界殑鏂规硶鏀惧湪涓�涓崟鍏冩祴璇曞唴锛屽熀纭�鐨勮幏鍙栫被鏂规硶娌℃湁鍗曠嫭鍐欏崟鍏冩祴璇曪紱
- 姣忎竴涓崟鍏冩祴璇曞潎宸查�氳繃锛屼絾鏄竴娆℃�у叏寮�鏃讹紝鏈湴鍗″湪绾︿竴鍗婂锛�
- 鍗曞厓娴嬭瘯鐨勬柟娉曞悕涓簍est + 瀹為檯鏂规硶鍚嶏紙棣栧瓧姣嶈浆澶у啓锛夛紱
- 闄edisUtil鏂板鏂规硶鎴栬�呮祴璇曟柟娉曞瓨鍦ㄩ敊璇紝灏介噺涓嶆洿鏂拌绫伙紝鏇存柊鏃讹紝闇�瑕佹敞閲婃墍鏈夊崟鍏冩祴璇曟柟娉曪紱
-
-4.json鏁版嵁涓紝瀛楁~type~锛屼笉鏄瓧娈靛悕锛屾槸瀛愯〃鏁版嵁鍦ㄤ慨鏀规椂鍊欑殑鎿嶄綔绫诲瀷锛屾柊澧炪�佷慨鏀广�佸垹闄�
- 鏂板锛寀uid娌℃湁鍊硷紝 鍙兘涓嶅啓~type~=xxx
- 淇敼,uuid鏈夊�硷紝 鍙兘涓嶅啓~type~=xxx
- 鍙湁鍒犻櫎鏃剁敤杩欎釜瀛楁鏉ュ尯鍒�,鍗硚type~=del
- 淇敼涓诲瓙琛ㄦ暟鎹� 涓昏〃蹇呴』鏈塽uid瀛楁锛屽瓙琛ㄦ暟鎹腑涓変釜绉嶆儏鍐碉細鏂板 ~type~="",uuid="",淇敼锛殈type~="",uuid="涓嶄负绌�"锛屽垹闄わ細~type~="del",uuid="涓嶄负绌�"
- 瀛愯〃鍒楁暟瑕佷竴鑷�
-
-5.鎵�鏈夊疄浣撶被鍨嬶紝閮藉繀椤绘湁涓瓧娈� table_name锛屽瓨琛ㄥ悕绉� ,鍙互瀹炰綋绫讳腑瀹氫箟鎴愬父閲�
-
-6.API璇锋眰鍙傛暟
- API璇锋眰json鐨勫弬鏁板悕绉帮細formData锛� Token鍙傛暟灏佽鍦╦son涓紝鍚嶇О锛歛ccessToken
- RequestParameterEntity 灏佽鎵�鏈夊弬鏁拌姹傦紝璇︾粏瑙佽绫�
- Object bean=request.getAttribute("requestPara");
- String accessToken = null;
- if(bean !=null) {
- RequestParameterEntity reqp=(RequestParameterEntity)bean;
- accessToken=reqp.getToken();
- }
- -----鑾峰彇琛ㄥ崟鏁版嵁------
- public FieldSetEntity getFormData() {
- return formData;
- }
-
-7.鎵�鏈塩ontroller 蹇呴』缁ф壙 AbstractBaseController
- 淇敼銆佸垹闄� 杩斿洖
- OK()
- 鐧诲綍杩斿洖
- OK_login
- 鏂板杩斿洖
- OK_Add(String uuid)
- 鏌ヨ杩斿洖
- OK_List(FieldSetEntity fs)
- OK_List(DataTableEntity dt)
-
- 閫氱敤閿欒杩斿洖锛� 鏂板銆佷慨鏀广�佸垹闄ゃ�佹煡璇㈠け璐�
- public String error(String code,String msg )
-
-9.鎵�鏈塻ervice 蹇呴』缁ф壙 AbstractBaseService
- /**
- * 鏁版嵁鏌ヨ ,spring 娉ㄥ叆
- */
- @Autowired
- public BaseDao baseDao = null;
-
-10.~table~ 鍙傛暟鍦ㄦ柊澧炪�佷慨鏀规帴鍙f椂蹇呴』鏀惧埌鏁版嵁鐨勫墠闈紝浠ユ鏉ラ鍏堣幏鍙栧埌
-
-13.楂樼骇鍙傜収涓嬫媺妗嗘帴鍙f暟鎹�
-{
- "code":200,
- "~table~":"xxxxx",
- "data":[{"value_field":"xxxx","view_fields":"xxxx","f1":"xxx","f2":"xxxx","f3":"xxx","code":"xxx"}
- ,{"value_field":"xxxx","view_fields":"xxxx","f1":"xxx","f2":"xxxx","f3":"xxx","code":"xxx"}],
- "pagesize":20,
- "cpage":4,
- "totalCount":343,
- "status":"success",
- "msg":"鎴愬姛"
-}
-鏅�氫笅鎷夋鎺ュ彛
-{
- "code":200,
- "~table~":"mrbase_sys_dict",
- "data":[{"dict_value":"xxxx","dict_label":"xxxx"}
- ,{"dict_value":"xxxx","dict_label":"xxxx"}],
- "pagesize":0,
- "cpage":0,
- "totalCount":0,
- "status":"success",
- "msg":"鎴愬姛"
-}
-
-14.涓嬫媺鍙傜収閰嶇疆锛屼繚瀛樻椂select_fields蹇呴』澶勭悊鐢熸垚锛寁alue_field+" value_field,"+view_fields+" view_fields "+prompt_fieldxxxxx
- prompt_fieldxxxxx,鏄敱prompt_field瀛楁澶勭悊鑰屾垚锛屽锛歠ield1,field2,field3 ,澶勭悊鍚庡彉鎴� ,field1 f1,field2 f2,field3 f3,org_level_code code
- 鏈�鍚巗elect_fields=xxxx value_field,xxxx view_fields,field1 f1,field2 f2,field3 f3,鍏朵腑 value_field銆乿iew_fields銆乫1銆乫2銆乫3 鏄浐瀹氬瓧娈�
- 鍏朵腑filter瀛楁锛屾槸閰嶇疆浜哄憳鎵嬪啓鐨剆ql鏉′欢锛屽瓧绗︿覆涓彲鑳介厤缃姩鎬佸弬鏁帮紝鏍煎紡涓猴細~鍙傛暟鍚嶇О~锛屽墠绔皟鐢ㄦ鍙傜収鏃讹紝涔熷繀椤讳紶瀵瑰簲鐨勫弬鏁板�� 锛屼緥濡傦細
- 閰嶇疆filter: uuid=~cust_uuid~ and name like '%~cust_name~%'
- 鍓嶇鍙傛暟锛歿cust_uuid="sdgeasge",cust_name="涓浗"}
-
- filter瀛楁涓繕鍙互閰嶇疆绯荤粺鍙橀噺锛屽锛歩s_used=1 and uuid in (select language_uuid from mrbase_sys_company_language where org_level_uuid='{{COMPANY_UUID}}')
- {{COMPANY_UUID}}:褰撳墠鐧诲綍浜哄憳鐨勫叕鍙窾UID.
-
- display_type锛� 1:鍒楄〃 2:鏍戠粨鏋勶紝褰撶瓑浜�2琛ㄧず姝ゅ弬鐓ф暟鎹樉绀烘爲鍨嬶紝鍚屾椂 code_field銆乸arent_code_field 銆乨elay_load瑕佸繀濉紝
- code_field锛氫笂涓嬬骇鍏崇郴琛ㄤ腑鐨� 缂栫爜瀛楁锛�001锛屾瀛楁涔熷鐞嗗悗鏀惧埌select_fields瀛楁涓幓锛氱敓鎴� xxxxx code,姝ゅ墠绔湪鐐瑰嚮涓�涓妭鐐规椂锛屽彇code鐨勫�间紶缁欐帴鍙o紝鎺ヨ繑鍥炲叾涓嬮潰鐨勫瓙鏁版嵁
- parent_code_field锛氱埗缂栫爜瀛楁锛�001
- org_filter_field锛氭牴鎹〃涓殑鍏徃瀛楁杩涜鏁版嵁杩囨护锛屽涓互閫楀彿鍒嗛殧
- usr_filter_field锛氫汉鍛樻暟鎹繃婊ゆ潯浠跺瓧娈碉紝蹇呴』鏄暟鎹簮琛ㄤ腑鐨勪汉鍛樺瓧娈碉紝鍙互澶氫釜锛岄�楀彿鍒嗛殧锛�
-
-14.1 涓嬫媺鍙傜収(楂樼骇鍙傜収銆佹暟鎹瓧鍏�)鍦ㄥ垪琛ㄤ腑鏄剧ず锛�
- 閰嶇疆mrbase_sys_datamodel_field.field_reference瀛楁锛岄厤鍙傜収鍚嶇О鎴栨暟鎹瓧鍏稿悕绉帮紝濡傛灉鏄暟鎹瓧鍏稿悕绉板姞涔﹀悕鍙锋嫭璧锋潵,濡傦細銆奼ender銆�
- 鍦ㄥ垪琛ㄧ殑鏌ヨ鏂规硶锛屽鍒楄〃鏁版嵁杩涜灏佽涓�娆★細baseDao.loadPromptData(dt);
-
-15.token鍙傛暟 token=xxxxxxxx,鏀惧埌json鏁版嵁涓紝鏁翠釜json浣滀负涓�涓弬鏁� formData={"token"="xxxxxxxx",xxxxxxxxx}
-
-16.鍒涘缓鍗曚綅绠$悊鍛橈紝浣跨敤mrbase_sys_user琛紝is_manamger榛樿涓烘槸
- 鍒涘缓绠$悊鍛樻椂锛屽垎閰嶏紝鍙兘缁欎笅绾х鐞嗗憳鍒嗛厤鑷凡鑼冨洿鍐呯殑鏉冮檺锛屽垵濮嬩竴涓秴绾х鐞嗗憳锛屽垵濮嬩竴涓秴绾х鐞嗗憳瑙掕壊銆傚垎缁欒秴绾х鍛�
- 鍒涘缓鍗曚綅绠$悊鍛橈紝鍙兘鍒涘缓涓嬬骇鍗曚綅鐨勭鐞嗗憳锛屽彲浠ュ叧鑱斿涓笅绾у崟浣嶏紝瀵规瘡涓崟浣嶈繘琛屽崟鐙殑鏉冮檺璁剧疆锛屽繀椤诲厛閫夎鑹叉潈闄愶紝
- 鍔熻兘涓爣璇嗘槸鍚︽槸鍚庡彴绠$悊鍔熻兘 锛岀鐞嗗憳鑷韩鐨勬潈闄愬繀椤绘槸鍚庡彴鍔熻兘锛屼负鏅�氫汉鍛樺垎閰嶆潈闄愭椂锛屽繀椤绘槸闈炲悗鍙扮鐞嗗姛鑳�
-17.鍔熻兘涓庢寜閽產pi鍚堟垚涓�涓紝閲囩敤涓诲瓙琛ㄦ柟寮忔搷浣�
-18.寮�鍙戝姛鑳藉弬鐓ystem宸ョ▼涓殑浠g爜
-19.鑾峰彇application涓殑閰嶇疆鍙傛暟锛屼娇鐢細
- String path = Global.getSystemConfig("upload.file.path", "d:");
-20.寮�鍙戞ā寮�
- 涓�涓礋璐d竴涓姛鑳芥ā鍧楃殑寮�鍙戯紝鍖呮嫭鎺ュ彛灞傘�佹湇鍔″眰
-20.鍖呭悕瑙勫垯锛屼互com.mrc.ats+妯″潡鍚嶇О+.controller(service銆乪ntity)
-
-21.鍏ㄩ儴鍦∕RC_ATS_Server涓嬮潰鍒涘缓maven妯″潡锛屼笉鏄痬aven宸ョ▼
- <groupId>com.mrc</groupId> 涓嶇敤鏀�
- <artifactId>ats-server</artifactId> 浠ts寮�澶达紝鍚庨潰鏄ā鍧楀悕绉�
- <version>1.0.0-SNAPSHOT</version> 涓嶇敤鏀�
-22.濡傛灉瑕佸紩鐢╦ar锛屽崟鐙湪pom涓坊鍔犱緷璧栵紝鍐呴儴宸ョ▼ 涔熸槸杩欎箞鐩稿紩
-23.spring bean寮曠敤
-private static MenuService menuService = SpringContextHolder.getBean(MenuService.class);
-
-24.鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛
- SystemUser user = SpringMVCContextHolder.getCurrentUser();
-25.鑾峰彇褰撳墠request銆乺eponse銆乻ession绛�
- SpringMVCContextHolder.getHttpxxxx()
-
-26.瀵规暟鎹殑鎿嶄綔锛屽彲浠ュ弬鑰冧唬鐮侊細JsonUtil锛屽浣曠敓鎴愮殑 FieldSetEnttiy,濡備綍鍦╢s涓幏鍙栧瓙琛紙DataTableEntity锛夛紝濡備綍鑾峰彇fs涓殑瀛楁鍊硷紝濡備綍鍦―ataTableEntity涓幏鍙栦竴鏉¤褰曪紝鍜屼竴鏉¤褰曚腑鐨勫瓧娈靛��
-
-27.瀵逛竴鏉¤褰曠殑璇诲啓鎿嶄綔
-
-28.瀵规暟鎹泦鐨勮鍐欐搷浣�
- 浠庣紦瀛樹腑鑾峰彇鍒版暟鎹泦
- DataTableEntity dt=DataPoolCacheImpl.getInstance().getCacheData("鎵�鏈夊瓧娈典俊鎭苟鎸夎〃鍒嗙粍");
-
- DataTableEntity table=DataPoolCacheImpl.getInstance().getCacheData("mrbase_sys_datamodel_table");
- String tableUuid=null;
- String subTableUUid=null;
- 寰幆姣忎竴鏉℃暟鎹�
- for(int i=0;i<table.getRows();i++) {
- if(tableUuid != null && subTableUUid != null )
- break;
- 鑾峰彇涓�鏉¤褰曚腑鐨勪竴涓瓧娈靛��
- if(tableName.equals(table.getString(i,"table_name"))){
- tableUuid=table.getString(i, "uuid");
- }
- if(subTableName.equals(table.getString(i,"table_name"))){
- subTableUUid=table.getString(i, "uuid");
- }
- }
-29.浜嬪姟鎿嶄綔
- 鎵�鏈夋柊澧炪�佷慨鏀广�佸垹闄ら兘瑕佸仛浜嬪姟
- 鐞嗚涓婁簨鍔″缓绔嬪湪Service灞傦紝涓嶅湪controller灞�
- 瀹炵幇鏂瑰紡锛�
- ----------------------------------------------------------------
- service绫讳腑瑕佸仛浜嬪姟鐨勬柟娉曟坊鍔犳敞瑙o細@Transactional锛屽涓嬶細
- /***
- * 鏂板瀹㈡埛鏁版嵁浜嬪姟澶勭悊(骞朵笖鍦ㄧ粍缁囨灦鏋勪腑鏂板涓�鏉℃渶椤剁骇鐨勬暟鎹�)
- * @param fse 瀹㈡埛鍗曚綅鏁版嵁
- * @return
- * @throws BaseException
- */
- @Transactional
- public String addClient(FieldSetEntity fse) throws BaseException{
- -----------------------------------------------------------------
- 娣诲姞service绫荤殑鎺ュ彛绫伙紝鎺ュ彛绫诲繀椤诲畾涔夎鍋氫簨鍔$殑鏂规硶
- controller蹇呴』缁ф壙AbstractBaseController
- -----------------------------------------------------------------
- controller涓殑鍏蜂綋璋冪敤锛�
- 鎶� systemClientsService.addClient(fse); 鏀规垚浠ヤ笅浠g爜
-
- /**浜嬪姟澶勭悊瀹炵幇**/
- ISystemClientsService service=(ISystemClientsService)getProxyInstance(systemClientsService);
- String uuid = service.addClient(fse);
-
- ISystemClientsService 锛歴ervice绫荤殑鎺ュ彛绫�
- systemClientsService锛歴pring娉ㄥ叆鐨剆ervice绫�
- -------------------------------------------------------------------
-
-30.鏌ヨ鍒楄〃涓寘鍚瓙琛ㄦ暟鎹�
- /**
- *
- * @param tableName
- * @param filter
- * @param para
- * @param fields
- * @param orderby
- * @param psize
- * @param pindex
- * @param isMoreSubData 鏄惁鍚屾椂鏌ヨ鎵�鏈夊瓙琛ㄧ殑瀵瑰簲鏁版嵁
- * @return
- * @throws BaseException
- */
- public DataTableEntity listTable(String tableName,String filter,Object para[],String fields[],String orderby, int psize,int pindex,boolean isMoreSubData)
-
-
- /**
- * @ 鏌ヨ鍒楄〃鏁版嵁鐨勬墍鏈夊瓙琛ㄦ暟鎹� String 1=姣忔潯璁板綍uuid锛孲tring 2= 瀛愯〃鍚嶇О
- * @param uuids 閫楀彿鍒嗛殧 鐖跺垪琛╱uids
- * @param table_name
- * @return
- */
- public Map <String,Map<String,DataTableEntity>> listSubData(String uuids,String tableName ) throws BaseException;
-31.鍏充簬闄勪欢鑾峰彇鎿嶄綔
- RequestParameterEntity.getFormData().getString(闄勪欢瀛楁);//涓婁紶鐨勫師濮嬫枃浠跺悕锛屽涓互閫楀彿鍒嗛殧
- RequestParameterEntity.getFiles().get(鍘熷鏂囦欢鍚�); //瀵瑰簲鐨勬枃浠讹紝鏂囦欢鍚嶏細uuid+"_"+鏂囦欢鐨勫師濮嬪悕绉� 锛屼竴娆″彧鑳借幏鍙栦竴涓�
-
-32.鍏充簬鎵嬪啓sql璇彞鏌ヨ鍜屽垎椤电殑瑕佹眰
- select TIMESTAMPDIFF(YEAR,aciwe.start_datetime,aciwe.end_datetime) AS start_datetime from a,b where f1=f2 鎴� a left join b on f1=f2
- 瀛楁鍒悕蹇呴』鏄〃涓殑瀛楁锛屽惁鍒欐棤娉曡幏鍙栧埌瀵瑰簲瀛楁鐨勮〃鍚嶅拰瀛楁淇℃伅瀹氫箟锛屽锛�
- start_datetime 蹇呴』鏄� a琛ㄦ垨b琛ㄤ腑鐨勪竴涓瓧娈�
-
- 澶氳〃鍏宠仈鏌ヨ锛岃〃瀹氫箟锛歛,b 鎴� a left join b on f1=f2 鏁翠釜鍋氫负琛�
- 鏉′欢瀹氫箟锛寃here 鍚庨潰 锛� f1=f2
- 33.濡傛煡sql璇彞涓病鏈塽uid瀛楁锛屾棤娉曟煡璇㈠嚭瀛愯〃
-
- 34.绯荤粺閿欒璇存槑
-
- 绯荤粺閿欒鍒嗕负涓ょ锛氫富鍔ㄦ姏鍑洪敊璇�佹崟鑾烽敊璇�
- 涓诲姩鎶涘嚭锛�
- /**
- * 鏋勯�犲嚱鏁�---涓诲姩鎶涘嚭鐨勯敊璇�
- * @param code 閿欒鐮佷唬鐮�
- * @param error 閿欒淇℃伅
- * @param c 閿欒鍙戠敓鐨勭被
- * @param method 閿欒鍙戠敓鏂规硶
- */
- public BaseException(String code,String error,Class c,String method);
-
- 鎹曡幏閿欒:
- /**
- * 鏋勯�犲嚱鏁帮紝璁板綍閿欒鍒板簱---鎹曡幏鐨勯敊璇�
- * @param code 閿欒鐮佷唬鐮�
- * @param exc 鎹曡幏鐨勯敊璇�
- */
- public BaseException(String code,String error,Class c,String method,Exception sysExc)
-
-35.licese鏀寔
- 纭欢淇℃伅璇诲彇搴撴枃浠讹紝涓嬭浇鍦板潃锛歨ttp://sigar.hyperic.com/
- windows鐗� mac鐗� linux鐗�
- sigar-x86-winnt.dll xxxxx xxxxxxxxxx
- sigar-amd64-winnt.dll xxxxxx xxxxxxxxx
- 鍚屾椂灏嗗搴旂殑dll鏂囦欢鎴栬�卻o鏂囦欢娣诲姞鍒扮郴缁熺洰褰曘�備緥濡傦細windows涓嬫妸sigar-x86-winnt.dll娣诲姞鍒癱:\WINDOWS\system32鎴栬�卝dk鐨刡in鐩綍銆�
-
-36.鍏充簬閫氱敤缂栫爜 001-002-003
- 琛ㄤ腑瀛樻斁缂栫爜鐨勫瓧娈碉紝蹇呴』鍦╩rbase_sys_datamodel_field琛ㄤ腑璇ュ瓧娈电殑field_type=code
- 鐣岄潰璋冪敤鎺ュ彛鑾峰彇缂栫爜锛�/api/common/createCode锛岃娴嬭瘯绫籆odeTest
- 濡傛灉鐣岄潰娌℃湁璋冪敤鎺ュ彛鐢熸垚缂栫爜锛屽垯鍙互鍦ㄤ笟鍔ontroller涓彲璋冧互涓嬩唬鐮佽幏鍙�
- String code=codeService.createCode(fse.getString("table_name"), fse.getString("field_name"), fse.getString("parentCode")==null?"":fse.getString("parentCode"));
- 鍦ㄦ柊澧炵殑controller涓皟鐢紝鍦ㄥ簳灞侱ao涓殑淇濆瓨鏂规硶涓幏鍙栬幏鍙栫殑涓存椂缂栫爜鍘婚獙璇佹槸鍚﹁鍗犵敤锛屽崰鐢ㄥ垯閲嶆柊鐢熸垚锛屼繚璇佸敮涓�鎬�
- 杩斿洖json鍊间腑code鐨勫�煎嵆涓虹敓鎴愮殑缂栫爜鍊�
-
-37.閫氱敤鍙傛暟楠岃瘉銆佹暟鎹繚瀛橀獙璇�
- 鍙傛暟楠岃瘉锛歝om.mrc.ats.module.sys.config.RegistValidate绫�
- 鍦╮egistValidateParameter鏂规硶涓坊鍔犻獙璇佷唬鐮侊紝濡傦細
- DataValidateInterceptor.registValidatPara("/api/prompt/findPrompt","client_uuid",VerifyRegularUtil.VALIDATE_REQUIRED);
- 鍙傛暟1锛氭帴鍙�
- 鍙傛暟2锛氶獙璇佸瓧娈�
- 鍙傛暟3锛氶獙璇佺被鍨�
- 鏁版嵁淇濆瓨楠岃瘉锛屽湪core鍖呬腑鐨刣ao涓嚜鍔ㄦ牴鎹暟鎹〃瀛楁鐨勯厤缃獙璇侊紝閫氬父涓嶇敤閰嶏紝浣嗗鏋滄湁鍏跺畠楠岃瘉锛屼篃鍙互鍦ㄤ繚瀛樺拰淇敼鎺ュ彛涓厤缃紝鍚﹀垯淇濆瓨鍜屼慨鏀规帴鍙d笉鐢ㄩ厤
- 鏍规嵁瀛楁绫诲瀷杩涜楠岃瘉锛屽锛氬瓧娈垫槸mail锛宮rbase_sys_datamodel_field.field_type=email,鐜板彧鏀寔锛�
- int銆乶umber(灏忔暟)銆乮dcard銆乽rl銆乮p銆乵ac銆乨atetime銆乴ength銆乪mail
-
-38.properties閰嶇疆鏂囦欢鍙傛暟鑾峰彇
- 璋冪敤锛�
- Global.getPropertyToBoolean("druid.datasource.testOnBorrow", "false")
- 鏂规硶锛�
- /**
- * 鑾峰彇閰嶇疆,濡傛灉鑾峰彇涓嶅埌閰嶇疆锛屽垯浼犻粯璁ゅ��
- * @key key鍊�
- * @defaultValue 涓虹┖鏃剁殑榛樿鍊�
- */
- public static String getSystemConfig(String key,String defaultValue)
- public static Integer getPropertyToInteger(String key, String defValue)
- public static Long getPropertyToLong(String key, String defValue)
- public static Boolean getPropertyToBoolean(String key, String defValue)
-39.鏁版嵁鏉冮檺
- 鍦ㄥ垪琛ㄤ腑娣诲姞鏁版嵁鏉冮檺鏉′欢鐨勮幏鍙栵紝娣诲姞鍒板垪琛ㄦ煡璇㈡柟娉曚腑銆�
- /**
- * 鑾峰彇浜哄憳鐨勬暟鎹潈闄愶紝鎬诲叆鍙� 锛屼笉杩囨护浜哄憳锛屽彧杩囨护鍏徃
- * 鎸囧畾瑕佽繃婊ょ殑 鍏徃瀛楁 浣跨敤榛樿鍏徃瀛楁杩涜杩囨护-org_level_uuid
- * @return
- */
- public String getDataFilter();
- /**
- * 鑾峰彇浜哄憳鐨勬暟鎹潈闄愶紝鎬诲叆鍙� 锛屼笉杩囨护浜哄憳锛屽彧杩囨护鍏徃
- * @param org_fields 鎸囧畾瑕佽繃婊ょ殑鍏徃瀛楁锛屼负绌哄垯锛屼娇鐢ㄩ粯璁ゅ叕鍙稿瓧娈佃繘琛岃繃婊�-org_level_uuid
- * @return
- */
- public String getDataFilter(String org_fields)
- /**
- * 鑾峰彇浜哄憳鐨勬暟鎹潈闄愶紝鎬诲叆鍙� 锛岃繃婊ゆ寚瀹氫汉鍛樺瓧娈碉紝浣跨敤榛樿鍏徃瀛楁杩涜杩囨护-org_level_uuid
- * @tableName 浜哄憳杩囨护鐨勮〃
- * @param staff_fields
- * @return
- */
- public String getDataFilter(String tableName,String staff_fields)
- /**
- * 鑾峰彇浜哄憳鐨勬暟鎹潈闄愶紝鎬诲叆鍙� ,浜哄憳 鍏徃鍚屾椂杩囨护
- * @param tableName 鎸囧畾鏄摢寮犺〃鐨勬暟鎹� 鏉冮檺杩囨护
- * @param staff_fields 鎸囧畾瑕佽繃婊ょ殑浜哄憳瀛楁 锛屼负绌哄垯锛屼笉鐢ㄤ汉鍛樿繃婊�
- * @param org_fields 鎸囧畾瑕佽繃婊ょ殑 鍏徃瀛楁锛屼负绌哄垯锛屼娇鐢ㄩ粯璁ゅ叕鍙稿瓧娈佃繘琛岃繃婊�-org_level_uuid
- * @return
- */
- public String getDataFilter(String tableName,String staff_fields,String org_fields)
-
- 40.鍏充簬娴佹按鍙�
- 鍙渶瑕佸湪閰嶇疆涓厤缃祦姘村彿,瑙佽〃mrbase_sys_swift_config
- 琛ㄤ腑瀛樻斁娴佹按鍙风殑瀛楁锛屽繀椤诲湪mrbase_sys_datamodel_field琛ㄤ腑璇ュ瓧娈电殑field_type=serialNumber 锛岀ず渚嬭test琛�
- 鐣岄潰璋冪敤鎺ュ彛鑾峰彇缂栫爜锛�/api/common/createSerialNumber锛岃娴嬭瘯绫籆odeTest锛屽繀浼犲弬鏁帮細serialNumberName锛屽搴旇〃娴佹按鍙烽厤缃〃涓殑swift_config_name瀛楁鍊�
- 杩斿洖json鍊间腑serialNumber鐨勫�煎嵆涓虹敓鎴愮殑娴佹按鍙�
- 濡傛灉鐣岄潰娌℃湁璋冪敤鎺ュ彛鐢熸垚缂栫爜锛屽垯鍙互鍦ㄤ笟鍔ontroller涓彲璋冧互涓嬩唬鐮佽幏鍙�
- String serialNumber=serialNumberService.createSerialNumber(serialNumberName);
- 鍦ㄦ柊澧炵殑controller涓皟鐢紝鍦ㄥ簳灞侱ao涓殑淇濆瓨鏂规硶涓幏鍙栬幏鍙栫殑涓存椂缂栫爜鍘婚獙璇佹槸鍚﹁鍗犵敤锛屽崰鐢ㄥ垯閲嶆柊鐢熸垚锛屼繚璇佸敮涓�鎬�
- 鎺�
- 閰嶇疆鏀寔鏍煎紡锛�
- [YYYY]锛氬勾
- [MM] 锛氭湀
- [DD] 锛氭棩
- [COMPANY_NAME]锛氬叕鍙稿悕绉�,瀵瑰簲org_level_name
- [COMPANY_CODE]锛氬叕鍙哥紪鐮� org_level_code
- [DEPT_NAME]锛氶儴闂ㄥ悕绉皁rg_level_name
- [DEPT_CODE]锛氶儴闂ㄧ紪鐮乷rg_level_code
-41.鎺ュ彛绛惧悕璁よ瘉
- 绯荤粺鍙傛暟鏂囦欢涓彲閰嶇疆锛�
- #鏄惁鍚敤鎺ュ彛绛惧悕璁よ瘉
- signature.isEnable=false
- #鍦ㄥ惎鐢ㄦ帴鍙g鍚嶈璇佹椂锛屾帓闄ゆ寚瀹氭帴鍙f棤闇�绛惧悕璁よ瘉
- signature.exclude.path=/login,/logout,/relogin
- #鎺ュ彛绛惧悕璁よ瘉鏈夋晥鏈燂紝鍗曚綅绉掞紝绛惧悕璁よ瘉鏈夋晥鏈�=绌烘垨0锛屽垯琛ㄧず涓嶉獙璇�
- signature.expire=10
- -------------
- 浣跨敤MD5鍔犲瘑锛屽姞瀵嗗唴瀹癸細鍙傛暟formData鐨勫��+KEY(鍗曠嫭鎸囧畾)
- 鍓嶇鍔犲瘑鍚庣殑瀛楃涓茶澶у啓锛歴ign=GEGSTLLSEGEL
- formData涓鍖呭惈timestamp鏃堕棿鎴崇殑鍊硷紝鏍煎紡涓猴細yyyyMMddHHmmss
-42.閫氱敤鍒犻櫎楠岃瘉
- 璋冪敤锛�
- 妯″潡 system
- 绫� SystemDeleteValidationService
- 鏂规硶 public boolean deleteValidation(String tableName, String uuids,String delete_filter) throws BaseException {
- 鍙傛暟璇存槑锛�
- tableName鍒犻櫎鏁版嵁琛ㄨ〃鍚�
- uuids瑕佸垹闄ゆ暟鎹殑uuid,澶氫釜鐢ㄩ�楀彿鍒嗛殧
- delete_filter鍒犻櫎鏉′欢 fields='name'
- 杩斿洖璇存槑锛�
- 楠岃瘉閫氳繃娌℃湁鍏宠仈浠讳綍鏁版嵁杩斿洖true
- 鍙傛暟缂哄け杩斿洖false
- 楠岃瘉娌¢�氳繃鍏宠仈浜嗗叾浠栬〃鏁版嵁鎶涘嚭寮傚父锛屽紓甯镐俊鎭腑鎻愮ず鍏宠仈鏁版嵁琛紝澶氫釜鐢ㄩ�楀彿鍒嗛殧
-43.鍥介檯鍖�
- label:
- 鐢ㄦ埛鐧诲綍鎴愬姛鍚庯紝璋冩帴鍙�:
- /api/language/load-international-info/{version}
- 鍔犺浇鎸囧畾瀹㈡埛绔�佺増鏈彿銆侀粯璁よ瑷�鐨勬墍鏈夊浗闄呭寲鏁版嵁
- 瀹㈡埛绔�佺増鏈彿銆侀粯璁よ瑷�鎺ュ彛鍙傛暟涓婁紶
-
- value:
- 1銆侀鍏堥厤缃〃銆佸瓧娈典负鍥介檯鍖栧瓧娈�
- 2銆佸墠绔皟鎺ュ彛鑾峰彇鍝簺琛ㄦ湁鍝簺鍥介檯鍖栧瓧娈碉紝鍦ㄧ晫闈㈢殑涓搴斿厓绱犲悗闈㈡坊鍔犲湴鐞冨浘鏍囷紝鐐瑰浘鏍囧脊鍑哄浗闄呭寲褰曞叆
- 鎺ュ彛:/api/language/list-international-fields-info/{version}
- 3銆佹柊澧炰繚瀛樻暟鎹甹son鏍煎紡锛�
- {
- 聽聽聽聽"token":"11111-鏂板鎻愪氦鏁版嵁",
- 聽聽聽聽"system_language_code":"ZH",
- 聽聽聽聽"system_client_type":"PC",
- 聽聽聽聽"system_client_version":"iphome聽X聽13.1.3",
- 聽聽聽聽"app_version":"V2.0.0",
- 聽聽聽聽"time_zone_offset":"240",
- 聽聽聽聽"sign":"eyJhbGciOiJIUzI1N",
- 聽聽聽聽"~table~":"mrbase_sys_users",
- 聽聽聽聽"name":[
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"en":"internationalization"
- 聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鍥介檯鍖�"
- 聽聽聽聽聽聽聽聽}
- 聽聽聽聽],
- 聽聽聽聽"address":[
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"en":"zhuhai"
- 聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鐝犳捣"
- 聽聽聽聽聽聽聽聽}
- 聽聽聽聽],
- 聽聽聽聽"phone":"18123938722",
- 聽聽聽聽"sub_table_name":[
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"filed1":"value1",
- 聽聽聽聽聽聽聽聽聽聽聽聽"filed2":"value2",
- 聽聽聽聽聽聽聽聽聽聽聽聽"name":[
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"en":"internationalization"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鍥介檯鍖�"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽}
- 聽聽聽聽聽聽聽聽聽聽聽聽],
- 聽聽聽聽聽聽聽聽聽聽聽聽"address":[
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"en":"zhuhai"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鐝犳捣"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽}
- 聽聽聽聽聽聽聽聽聽聽聽聽]
- 聽聽聽聽聽聽聽聽}
- 聽聽聽聽]
- }
- 4銆佹煡璇㈠垪琛ㄦ暟鎹�
- 棣栧厛鏌ヨ鍑烘墍鏈変笟鍔℃暟鎹紝鍐嶈皟
- /**
- * 涓氬姟浠g爜灞傝皟鐢�
- * 鑾峰彇涓氬姟瀵瑰簲瀛楁鐨勫浗闄呭寲鏁版嵁,濡傛灉language_code涓嶄负绌猴紝琛ㄦ槑鏄墜鏈虹
- * @param dt 涓氬姟琛ㄦ暟鎹�
- * @param language_code 涓嶄负绌哄垯涓烘墜鏈虹
- * @return
- */
- DataTableEntity baseDao.listInternationDataTable(DataTableEntity dt,String language_code ) 灏佽鍥介檯鍖栨暟鎹埌姣忔潯璁板綍鐨勬瘡涓浗闄呭寲瀛楁銆�
- FieldSetEntity baseDao.listInternationDataTable(FieldSetEntity fs,String language_code ) 灏佽鍥介檯鍖栨暟鎹埌鍗曟潯璁板綍鐨勬瘡涓浗闄呭寲瀛楁銆�
-
- //baseDao.processInternationDataTable(DataTableEntity dt,String language_code ),鍥介檯鍖栧瓧娈典笉鏄暟缁勬牸寮�
- //baseDao.processInternationDataTable(FieldSetEntity fs,String language_code ) 鍥介檯鍖栧瓧娈典笉鏄暟缁勬牸寮�
- 杩斿洖json鏍煎紡锛�
-
- {
- 聽聽聽聽"code":"200",
- 聽聽聽聽"data":[
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"100001",
- 聽聽聽聽聽聽聽聽聽聽聽聽"name":[
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"en":"internat"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鍥介檯鍖�"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽}
- 聽聽聽聽聽聽聽聽聽聽聽聽],
- 聽聽聽聽聽聽聽聽聽聽聽聽"address":[
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"en":"zhuhai"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鐝犳捣"
- 聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽聽}
- 聽聽聽聽聽聽聽聽聽聽聽聽],
- 聽聽聽聽聽聽聽聽聽聽聽聽"phone":"18123938729"
- 聽聽聽聽聽聽聽聽}
- 聽聽聽聽],
- 聽聽聽聽"msg":"鎴愬姛",
- 聽聽聽聽"status":"success"
- }
-
- 5銆佷慨鏀逛繚瀛樻暟鎹甹son鏍煎紡锛�
- {
- 聽聽聽聽"token":"11111-鏂板鎻愪氦鏁版嵁",
- 聽聽聽聽"language_code":"zh",
- 聽聽聽聽"client_type":"PC",
- 聽聽聽聽"client_version":"iphome聽X聽13.1.3",
- 聽聽聽聽"app_version":"V2.0.0",
- 聽聽聽聽"time_zone_offset":"240",
- 聽聽聽聽"sign":"eyJhbGciOiJIUzI1N",
- 聽聽聽聽"~table~":"mrbase_sys_users",
- 聽聽聽聽"uuid":"100001",
- 聽聽聽聽"name":[
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽"en":"internationalization"
- 聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鍥介檯鍖�"
- 聽聽聽聽聽聽聽聽}
- 聽聽聽聽],
- 聽聽聽聽"address":[
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽"en":"zhuhai"
- 聽聽聽聽聽聽聽聽},
- 聽聽聽聽聽聽聽聽{
- 聽聽聽聽聽聽聽聽聽聽聽聽"uuid":"xxxxx",
- 聽聽聽聽聽聽聽聽聽聽聽聽"zh":"鐝犳捣"
- 聽聽聽聽聽聽聽聽}
- 聽聽聽聽],
- 聽聽聽聽"phone":"18123938722"
- }
-
- 6.涓嶈兘鍥介檯鍖栫殑琛細
- mrbase_sys_cache_config 缂撳瓨閰嶇疆
- mrbase_sys_data_sources 鏁版嵁搴撹繛鎺ラ厤缃�
- mrbase_sys_datamodel_field 鏁版嵁缁撴瀯瀛楁淇℃伅
- mrbase_sys_datamodel_table 鏁版嵁缁撴瀯琛ㄤ俊鎭�
- mrbase_sys_language_code
- mrbase_sys_language_cont_values
- mrbase_sys_language_master
- mrbase_sys_language_values
- mrbase_sys_message_exchange
- mrbase_sys_message_message_exchange
- mrbase_sys_message_template
- mrbase_sys_message_template_language
- mrbase_sys_message_user_exchange
- mrbase_sys_prompt
- mrbase_sys_swift_config
- mrbase_sys_tree_config
- mrbase_sys_version_buttons_mapping
- 瀹氭椂浠诲姟鎵�鏈夎〃
-44.鏂囦欢涓婁紶--绗笁鏂规枃浠舵湇鍔″櫒
- 1锛夎幏鍙栧鎴蜂笂浼犵殑鏂囦欢鎬诲ぇ灏忥細com.mrc.base.file.service.FileManagerService
- /**
- * 鑾峰彇瀹㈡埛涓婁紶鐨勬枃浠舵�诲ぇ灏�
- * @param clientUUID 瀹㈡埛UUID
- * @return 宸蹭笂浼犳枃浠舵�诲ぇ灏�
- * @throws BaseException 鍩烘湰寮傚父
- */
- public int findClientFileUsedCapacity(String clientUUID) throws BaseException
- 2锛夎幏鍙栧鎴峰墿浣欑殑鏂囦欢鎬诲ぇ灏忥細com.mrc.base.file.service.FileManagerService
- /**
- * 鑾峰彇瀹㈡埛鍓╀綑鐨勬枃浠舵�诲ぇ灏�
- * @param clientUUID 瀹㈡埛UUID
- * @return 鍓╀綑绌洪棿澶у皬
- */
- public int findClientFileResidueCapacity(String clientUUID) throws BaseException
-
- /**
- * 鑾峰彇瀹㈡埛鍓╀綑鐨勬枃浠舵�诲ぇ灏�
- * @param fse 瀹㈡埛fse
- * @return 鍓╀綑绌洪棿澶у皬
- */
- public int findClientFileResidueCapacity(FieldSetEntity fse) throws BaseException
- 3锛変笂浼犳枃浠�
- 1>鍓嶇涓婁紶鏂囦欢锛岃繑鍥炴枃浠朵俊鎭粰鍚庣锛岃皟鐢ㄨ姹傚墠缂�/api/fileManager/add-file-record-plan/{version}锛岃鎯呰showdoc涓�14-1銆佹枃浠舵柊澧炲噯澶囷紝鍚庣杩斿洖fse
- 浼犲叆json绀轰緥锛�
- {
- "org_level_uuid": "b8631dad-6cc1-4d5a-9f6f-e8c76e6a5464",
- "~table~": "mrbase_sys_attachments",
- "attachment_title": "test_202006221036.doc",
- "client_uuid": "06f959c8-4f41-407c-9bcc-8137a8b22f50",
- "language": "mslc1112",
- "function_uuid": "97779f8b-9657-47e7-8915-2f51113210fe",
- "client_type": "web",
- "attachment_data_table": "test_project",
- "version": "v1",
- "token": "eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiJhZG1pbiIsImlhdCI6MTU5Mjc5MzY3OSwic3ViIjoic2hpX2Nob25nZnVAMTYzLmNvbSIsImlzcyI6Ind3dy5tcmMuY29tIiwiZXhwIjoxNTkyODY1Njc5fQ.kgffR0iYgjKhFSNI-ak5hPCf3453aOYXIrwHte7pRAY",
- "product_uuid": "001",
- "staff_uuid": "e2f158ec-a6c7-40e0-a201-4fd7eb2e0e98",
- "attachment_data_field": "attachment",
- "attachment_size": "1"
- }
- 2>鍓嶇寰楀埌鍚庣杩斿洖鍚庢嫾鎺rl锛岃皟鐢ㄨ嚦鏈嶅姟鍣ㄧ涓婁紶鏂囦欢锛屾牴鎹湇鍔″櫒绔姸鎬佽繑鍥炶皟鐢ㄨ姹傚墠缂�/api/fileManager/add-file-callback/{version}锛岃鎯呰showdoc涓�14-2銆佹枃浠舵柊澧炵粨鏋滃洖璋冦�傛湇鍔$鏂板鎴愬姛鏈湴鎵ц淇敼锛屽彉鏇存枃浠惰褰曠姸鎬佷负涓婁紶鎴愬姛锛岃繑鍥瀠pdate锛涙湇鍔$鏂板澶辫触鏈湴鎵ц鍒犻櫎锛岃繕鍘熻褰曪紝杩斿洖del
- 浼犲叆json绀轰緥锛�
- {
- "result": "1",
- "uuid": "c48c0147-8b2f-4a8d-9d5b-46c55ceb725b",
- "token": "eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiJhZG1pbiIsImlhdCI6MTU5Mjc5NjMzNiwic3ViIjoic2hpX2Nob25nZnVAMTYzLmNvbSIsImlzcyI6Ind3dy5tcmMuY29tIiwiZXhwIjoxNTkyODY4MzM2fQ.LiUeajNzZAHWuT5O_YdPh5IOp7geVjklBGrWUBz79fo"
- }
- 4锛夊垹闄ゆ枃浠�
- 1>鍓嶇鍒犻櫎鏂囦欢锛岃繑鍥炴枃浠朵俊鎭粰鍚庣锛岃皟鐢ㄨ姹傚墠缂�/api/fileManager/del-file-record-plan/{version}锛岃鎯呰showdoc涓�14-3銆佹枃浠跺垹闄ゅ噯澶囷紝鍚庣杩斿洖fse
- 浼犲叆json绀轰緥锛�
- {
- "uuid": "c48c0147-8b2f-4a8d-9d5b-46c55ceb725b",
- "token": "eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiJhZG1pbiIsImlhdCI6MTU5MjgwNDMyOSwic3ViIjoic2hpX2Nob25nZnVAMTYzLmNvbSIsImlzcyI6Ind3dy5tcmMuY29tIiwiZXhwIjoxNTkyODc2MzI5fQ.Fsau5aHByePG7E-p68Y8_Py6yGAcYwbxQLwhkz20MGQ"
- }
- 2>鍓嶇寰楀埌鍚庣杩斿洖鍚庢嫾鎺rl锛岃皟鐢ㄨ嚦鏈嶅姟鍣ㄧ鍒犻櫎鏂囦欢锛屾牴鎹湇鍔″櫒绔姸鎬佽繑鍥炶皟鐢ㄨ姹傚墠缂�/api/fileManager/del-file-callback/{version}锛岃鎯呰showdoc涓�14-4銆佹枃浠跺垹闄ょ粨鏋滃洖璋冦�傛湇鍔$鍒犻櫎鎴愬姛鏈湴鎵ц鍒犻櫎锛岃繑鍥瀌el锛涙湇鍔$鍒犻櫎澶辫触鏈湴鎵ц淇敼锛岃繕鍘熸枃浠惰褰曠姸鎬侊紝杩斿洖update
- 浼犲叆json绀轰緥锛�
- {
- "result": "0",
- "uuid": "c48c0147-8b2f-4a8d-9d5b-46c55ceb725b",
- "token": "eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiJhZG1pbiIsImlhdCI6MTU5MjgwNTg4OSwic3ViIjoic2hpX2Nob25nZnVAMTYzLmNvbSIsImlzcyI6Ind3dy5tcmMuY29tIiwiZXhwIjoxNTkyODc3ODg5fQ.0x7xmEM2G8qXq7jiYQiy6iDm48tYEqVS9UqhlHUB9xk"
- }
-45.鏈湴鏂囦欢涓婁紶--绯荤粺鏈嶅姟鍣�
- 涓婁紶鐩綍閰嶇疆锛岃properties鏂囦欢涓殑upload.file銆倄xxx 鍑犱釜鐩稿叧鍙傛暟
- 涓婁紶鏂囦欢鑷姩瀛樺埌鐩綍涓嬶紝鍦╟ontroller鎴杝ervice灞備腑璇诲彇鎿嶄綔銆�
-
-46.娑堟伅鏈嶅姟
- 1.鏂板缓闃熷垪
- public static void createQueue(String queue_name)
- 鏃犺繑鍥炲��
- 2.鍒犻櫎闃熷垪
- public static void deleteQueue(String queue_name)
- 鏃犺繑鍥炲��
- 3.鏂板缓浜ゆ崲鏈�
- messageService.addExchange
- 鍙傛暟
- "exchange_uuid":"鏂板缓浜ゆ崲鏈�"
- 杩斿洖鍊硷細浜ゆ崲鏈簎uid
- 4.缁戝畾浜ゆ崲鏈�
- messageService.bindExchange
- 鍙傛暟锛�
- {"user_uuid":"鐢ㄦ埛uuid",
- "exchange_uuid":"浜ゆ崲鏈簎uid"}
- 杩斿洖鍊硷細Boolean
- 5.瑙g粦浜ゆ崲鏈�
- messageService.unbindExchange
- 鍙傛暟锛�
- {"user_uuid":"鐢ㄦ埛uuid",
- "exchange_uuid":"浜ゆ崲鏈簎uid"}
- 杩斿洖鍊硷細boolean
- 6.娣诲姞娑堟伅涓旀坊鍔犳秷鎭褰�
- messageService.addMessage
- 鍙傛暟锛�
- {
- "exchange_uuid":"浜ゆ崲鏈簎uid"
- "message_uuid"锛�"鐢ㄦ埛uuid"
- "message":"娑堟伅鍐呭"
- "template_id":"妯℃澘id"
- "create_by":"鎿嶄綔浜簎uid"
- "virtual_hosts":"铏氭嫙鏈哄悕"
- }
-47.缁煎悎鎼滅储锛�
- findService.listUuid
- 鍙傛暟锛�
- {
- ~table~锛歔鈥溾��,鈥濃��,鈥濃��,鈥濃�漖 //鏁版嵁搴撹〃
- Conditions:[{condition:value},{},{}...] //鏉′欢
- language:value //鍥介檯鍖栬瑷�
- }
- 杩斿洖鍊硷細list<String> uuids
-
- 褰撴煡璇㈣鍚嶏紝浣跨敤澶氳〃鑱斿悎鏌ヨ锛屽苟浣跨敤浜嗗埆鍚嶆椂锛岄渶瑕佹坊鍔犺〃鍒悕銆佸瓧娈靛埆鍚嶈缃紝骞舵妸sql璇彞浣跨敤select * from (鏌ヨ璇彞+鏁版嵁鏉冮檺鏉′欢+楂樼骇鏌ヨ鏉′欢) b 鎷捣鏉ワ紝娉ㄦ剰
- 48.浠ヤ笅鍐呭鍙樻洿
- 1.core鍖呭紩鍏ュ彉鏇�
-<dependency>
- <groupId>com.mrc</groupId>
- <artifactId>base-server-core</artifactId>
- <version>1.0.0-releases</version>
-</dependency>
-2.鎵�鏈夊紩鍏ore鍖呬腑绫荤殑璺緞鍚湁ats鍏ㄩ儴鏇挎崲鎴恇ase,濡傦細
-import com.mrc.ats.core.dao.BaseDao; -> import com.mrc.base.core.dao.BaseDao;
-
-3.鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛瀵瑰簲鍛樺伐淇℃伅锛�
- 鏀规垚getCurrentStaff() FieldSetEntity
-
-4.鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛瀵瑰簲鍛樺伐鎵�灞炲叕鍙镐俊鎭�
- getCurrentCompany() FieldSetEntity
-鍗曠嫭鑾峰彇鍏徃鐨剈uid銆乷rg_level_name(鍏徃鍚嶇О) org_level_code(鍏徃缂栫爜)
-
-4.鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛瀵瑰簲鍛樺伐鎵�灞為儴闂ㄤ俊鎭�
- getCurrentDept() FieldSetEntity
-鍗曠嫭鑾峰彇閮ㄩ棬uuid
-
-5.鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛瀵瑰簲鍛樺伐鎵�灞炲鎴蜂俊鎭�
- getCurrentCustomer()
-鍗曠嫭鑾峰彇瀹㈡埛uuid 銆佸鎴峰悕绉般�佸鎴风紪鐮�
-
-6.鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛瀵瑰簲绠$悊鍛樹俊鎭�
- getCurrentManager()
-
-7.鑾峰彇鏌ヨ鏁版嵁闆嗙殑鎵�鏈塽uid
- public String DataTableEntity.getUuids() 鍘� 锛屾敼涓轰互涓�
-
- 鎸囧畾琛ㄧ殑鎵�鏈塽uid,杩斿洖鏁扮粍
- -> public Object[] getUuids(Object tableName)
- 鎸囧畾琛ㄧ殑鎵�鏈塽uid锛岃繑鍥為�楀彿鍒嗛殧鐨勫瓧绗︿覆
- -> public String getUuidsToString(Object tableName)
- 杩斿洖榛樿琛ㄧ殑鎵�鏈塽uid,杩斿洖鏁扮粍
- -> public Object[] getUuids()
- 杩斿洖榛樿琛ㄧ殑鎵�鏈塽uid,杩斿洖閫楀彿鍒嗛殧鐨勫瓧绗︿覆
- -> public String getUuidsToString()
-8.鐧诲綍涓婁紶鍥哄畾鍙傛暟
- system_language_code 璇█缂栫爜 zh en
- system_client_type 瀹㈡埛绫诲瀷
- system_client_version 浠g爜鐗堟湰
-
-9.鎺ュ彛鐗堟湰鍙峰ぇ鍐橵鍐嶅姞3涓暟瀛楀涓嬶細
-鎵�鏈夋帴鍙e繀椤讳笂浼犵増鏈彿
-http://{IP}:{PORT}/{ProjectName}/api/app/homepage/get-home-page-list/v1 鎴杤2
-
-10.new FieldSetEntity()鍚庯紝棣栧厛瑕佽缃〃鍚嶏紝鎵嶈兘璋僺etValue(String fieldName,Object fieldValue)锛� 鍚﹀垯鍙兘璋僺etValue(String fieldName,Object fieldValue,Object tableName)
-
-11.public FieldSetEntity getLeaderStaff() throws BaseException SystemUser.getLeaderStaff()鑾峰彇褰撳墠浜烘墍鐩村睘棰嗗淇℃伅
-
-12.public FieldSetEntity getJobPost() throws BaseException SystemUser.getJobPost()鑾峰彇褰撳墠浜烘墍宀椾綅淇℃伅
-
-13.public DataTableEntity loadDirectSubordinate(String staffUuid) throws BaseException StaffManagerService.loadDirectSubordinate() 鑾峰彇鎸囧畾浜哄憳鐨勭洿鎺ヤ笅灞�
-
-14.public DataTableEntity loadAllSubordinate(String staffUuid) throws BaseException StaffManagerService.loadAllSubordinate() 鑾峰彇鎸囧畾浜哄憳鐨勬墍鏈夌洿鎺ヤ笅灞�
-
-15.public FieldSetEntity loadStaffLeader(Integer userid) StaffManagerService.loadStaffLeader() 鑾峰彇浜哄憳鐨勭洿灞為瀵�
-
-16.public FieldSetEntity loadStaffLeader(String staffUuid) StaffManagerService.loadStaffLeader() 鑾峰彇浜哄憳鐨勭洿灞為瀵�
-
-17.鏌ヨ鍑烘潵鐨勬暟鎹泦DataTableEntity 鎴朏ieldSetEntity 涓幏鍙栧埌FieldMetaEntity,璋僷ublic void addAliasField(String tableName_fieldName,String alias)娣诲姞鏌ヨ涓娇鐢ㄧ殑鍥介檯鍖栬繖娈靛埆鍚嶃��
-tableName_fieldName锛� 琛ㄥ悕涓庡瓧娈靛悕缁勫悎锛屼腑闂翠互鐐瑰垎闅� table.field
-Alias锛� sql涓搴旂殑瀛楁鍒悕
-
-18.濡傛灉澶氳〃鑱斿悎鏌ヨ锛岃鍙栧浗闄呭寲鍊肩殑琛紝蹇呴』鍙栬琛╱uid瀛楁锛屾湁閲嶅uuid锛岃嚜鍔ㄦ坊鍔犲埆鍚嶏紝鏌ヨ鍑烘潵鐨剈uid浼氬湪鍚庨潰娣诲姞鏁版嵁閫掑锛屽锛歶uid1,uuid2,绗竴涓猽uid涓嶄細鍙橈紝濡傛灉瑕佹墜鍔ㄥ閲嶅鐨剈uid鍙栧埆鍚嶏紝涔熷簲鎸夋瑙勫垯杩涜锛屽惁鍒欏彲鑳藉嚭鐜板浗闄呰幏鍙栦笉鍒版暟鎹瓑鎯呭喌
-19.濡傛灉澶氳〃鑱斿悎鏌ヨ锛屽叾瀹冨瓧娈甸噸澶嶄笌uuid閲嶅绫讳技,
-澶氳〃鑱斿悎鏌ヨ锛屽悓涓�涓〃锛屽悓涓�涓瓧娈碉紝浣跨敤涓ゆ锛岄渶瑕乻elect * from () b 鎶婃煡璇富浣撴嫭璧锋潵鍚屾椂琛ㄥ繀椤昏缃埆鍚�
-20.FeildSetEntity涓幏鍙朞bject鏃舵湁涓や釜鏂规硶锛歡etValue(String fieldName)鍜実etObject(String fieldName),鍖哄埆鍦ㄤ簬锛実etValue锛圫tring fieldName锛変細鎶婂浗闄呭寲瀛楁鍊艰浆鎴怞SONObject瀵硅薄锛岃�実etObject(String fieldName)鍙槸杩斿洖鍩虹鏁版嵁
-
-48.鎵嬫満绔疛SON鏁版嵁鏍煎紡鐨勮皟鐢�
- 璇█缂栫爜鑾峰彇
- String language_code=reqp.getOther().get(com.mrc.base.core.config.CmnConst.SYSTEM_LANGUAGE_CODE ).toString();
- String client_type=reqp.getOther().get(com.mrc.base.core.config.CmnConst.SYSTEM_CLIENT_TYPE ).toString();
- 鏁版嵁淇濆瓨锛�
- baseDao.add(FieldSetEntityfse,String language_code);
- baseDao.add(FieldSetEntity fs,boolean subData,String language_code)
- baseDao.add(DataTableEntity fs,String language_code)
- 鏁版嵁淇敼锛�
- baseDao.update(FieldSetEntity fs,String language_code)
- baseDao.update(FieldSetEntity fs,boolean subData,String language_code)
- baseDao.update(DataTableEntity fs,String language_code)
- 鏁版嵁鏌ヨ锛�
- FieldSetEntity listInternationDataTable(FieldSetEntity fs,String language_code )
- DataTableEntity listInternationDataTable(DataTableEntity dt,String language_code )
-49.鍚庣閿欒淇℃伅鍥介檯鍖�
- 1)閿欒淇℃伅鏋氫妇绫绘敞鍏ワ紝鍚姩绫讳腑娣诲姞娉ㄥ叆浠g爜锛�
- DataPoolCacheImpl.getInstance()
- .appendErrorEnumClass("com.mrc.base.core.config.ErrorCode")
- .appendErrorEnumClass("com.mrc.base.module.sys.config.SystemCode")
- .appendErrorEnumClass("com.mrc.base.module.sys.config.SystemErrorCode");
- 2)鐗规畩鎯呭喌璋冪敤锛圓bstractBaseController.error()銆丅aseException.getMessage()銆乬etMessageInfo()宸插疄鐜帮級
- String message=DataPoolCacheImpl.getInstance().getErrorLanguageInternation(code, language_code);
-
-50.楂樼骇鍙傜収鏁版嵁杩斿洖瑙勫垯
- 1)鎵�鏈夊崟浣嶉珮绾у弬鐓ф暟鎹� f1 鍏ㄧО f2 鐭紪鐮�
- 2)鎵�鏈夐儴闂ㄩ珮绾у弬鐓ф暟鎹� f1 鍏ㄧО f2 鐭紪鐮�
- 3)鎵�鏈夊矖浣嶉珮绾у弬鐓ф暟鎹� f1 鍏ㄧО
- 4)鎵�鏈夊矖浣嶇瓑绾ч珮绾у弬鐓ф暟鎹� f1 绛夌骇绾у埆 f2 缁勫悕
- 5)鎵�鏈夋ā鍧楅珮绾у弬鐓ф暟鎹� f1 鐭紪鐮�
- 6)鎵�鏈夊姛鑳介珮绾у弬鐓ф暟鎹� f1 鐭紪鐮�
- 7)鎵�鏈夊鎴烽珮绾у弬鐓ф暟鎹� f1 鐭紪鐮�
-51.楂樼骇鍙傜収閰嶇疆
- 鏁版嵁婧愯〃瀛楁鏇存敼涓哄悗绔帴鍙o紝浠嶥ataPoolCacheImpl.getInstance().getCacheData("鎵�鏈夎〃淇℃伅");涓幏鍙栨墍鏈夎〃
- 琛ㄥ埆鍚嶏細浠� "a"+table_id涓鸿〃鍒悕
- 閲嶅鍏宠仈琛ㄩ厤缃細SystemPromptService.getPromptRepetitionJoinTable() 锛屽満鏅� 鍏徃 join 閮ㄩ棬 銆佸憳宸oin涓嬪睘
- 鍏宠仈绫诲瀷 left join , inner join , right join
- 鍗曡〃锛�
- 鏁版嵁婧愯〃澶氬嚭鍒悕
- 瀛楁锛氳〃鍒悕 "."瀛楁鍚�
- 澶氳〃
- is_multiple = 1
- relate_filter(澶氳〃鍏宠仈鏉′欢锛�
- relate_type(鍏宠仈绫诲瀷锛�
- 鍦ㄩ�夋嫨浜嗘暟鎹簮琛� a 锛宐锛� c , d琛ㄥ埆鍚嶅垎鍒负 a1,a2,a3,a4
- 鍏宠仈绫诲瀷= left join锛堟牴鎹笟鍔¢渶姹傚畾锛岀洰鍓嶅彧鑳介�夋嫨1绉嶅叧鑱旀柟寮�)
- 澶氳〃鍏宠仈鏉′欢 = a1.uuid=a2.uuid,a3.uuid=a1.uuid,a2.uuid=a4.uuid 澶氫釜琛ㄧ殑鍏宠仈鏉′欢 鐢� "," 鍒嗛殧锛�
- 澶氳〃鍏宠仈鏉′欢濉啓椤哄簭搴斾笌琛ㄩ『搴忓搴斾笉鍙鍊�
- 姣忎釜琛ㄥ叧鑱斿繀椤诲湪瀵瑰簲鐨勪竴缁勫叧鑱旀潯浠朵腑鐢ㄥ埌 琛ㄥ埆鍚�"."瀛楁
- 閿欒绀鸿寖锛氣�渁1.uuid=a2.uuid,a3.uuid=a1.uuid鈥� 锛岄珮绾у弬鐓ц〃鍏宠仈涓暟涓庢潯浠朵釜鏁颁笉鍖归厤
-52.鍔熻兘鏉冮檺楠岃瘉
- 蹇呴』閰嶇疆mrbase_sys_function_buttons.api_url閰嶇疆鎸夐挳瀵瑰簲鍚庣鎺ュ彛鍦板潃锛屽涓�楀彿鍒嗛殧,涓嶈兘鍚増鏈彿锛屽锛�
- 鎺ュ彛鍦板潃锛�/api/management/delete-user/v1 閰嶇疆鍦板潃锛�/api/management/delete-user
-
-53.鏁版嵁鎿嶄綔鏉冮檺楠岃瘉
- 涓诲寰佸鍗曟潯鏁版嵁鐨勫垹 銆佹敼 銆佹煡鎿嶄綔锛屽湪鍒� 銆佹敼 銆佹煡鐨勭浉搴旀帴鍙h皟鐢�
- 蹇呴』璁剧疆mrbase_sys_datamodel_field.field_type,userid锛氬瓨鏀句汉鍛樼殑瀛楁绫诲瀷锛宱rgUuid锛氬瓨鏀剧粍缁囨満鏋勭殑瀛楁绫诲瀷
- 1)Controller鎺ュ彛灞傝皟鐢�
- 2)璋冩硶
- /**
- * 瀵瑰崟鏉℃暟鎹繘琛屾搷浣滅殑鏉冮檺楠岃瘉
- * @param tableName 琛ㄥ悕
- * @param uuid uuid
- * @param type 楠岃瘉绫诲瀷 1=浜哄憳楠岃瘉 2= 绾х粐鏈烘瀯楠岃瘉 3 涓よ�呴兘楠岃瘉
- * @return
- */
- public boolean validDataPermission(String tableName,String uuid ,int type)
- /**
- * 瀵瑰崟鏉℃暟鎹繘琛屾搷浣滅殑鏉冮檺楠岃瘉
- * @param fs 涓婁紶鏁版嵁锛屽繀椤诲寘鍚〃鍚� uuid ,鍚︿竴寰嬮�氳繃
- * @param type 楠岃瘉绫诲瀷 1=浜哄憳楠岃瘉 2= 绾х粐鏈烘瀯楠岃瘉 3 涓よ�呴兘楠岃瘉
- * @return
- */
- public boolean validDataPermission(FieldSetEntity fs ,int type)
- /**
- * 瀵瑰崟鏉℃暟鎹繘琛屾搷浣滅殑鏉冮檺楠岃瘉 ,鐗规畩鏉冮檺鏉′欢 锛屼笉鏍规嵁浜� 缁勭粐鏈烘瀯杩囨护
- * @param tableName 琛ㄥ悕
- * @param uuid uuid
- * @param filter 鐗规畩鏉冮檺鏉′欢
- * @return
- */
- public boolean validDataPermission(String tableName,String uuid,String filter)
- /**
- * 瀵瑰崟鏉℃暟鎹繘琛屾搷浣滅殑鏉冮檺楠岃瘉 ,鐗规畩鏉冮檺鏉′欢 锛屼笉鏍规嵁浜� 缁勭粐鏈烘瀯杩囨护
- * @param fs 涓婁紶鏁版嵁锛屽繀椤诲寘鍚〃鍚� uuid ,鍚︿竴寰嬮�氳繃
- * @param filter 鐗规畩鏉冮檺鏉′欢
- * @return
- */
- public boolean validDataPermission(FieldSetEntity fs ,String filter)
- 3)鏁版嵁鎿嶄綔鐨勬潈闄愰獙璇�,鐗规畩鏉′欢璋冪敤绀轰緥
- if(!permissionService.validDataPermission(fse, "(client_uuid is null or client_uuid='') or client_uuid='"
- +SpringMVCContextHolder.getCurrentUser().getClient_uuid()+"'")) {
- SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
- SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
- return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
- }
-
- 4)鎸変汉鍛樸�佺粍缁囨満鏋勯獙璇佹暟鎹潈闄愯皟鐢ㄧず渚�
-
- if(!permissionService.validDataPermission(fse,CoreConst.DATA_PERMISSION_VALID_TYPE_ALL)) {
- SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
- SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
- return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
- }
-
-
-
diff --git "a/product-server-project-web/doc/\351\224\231\350\257\257\344\273\243\347\240\201\350\257\246\347\273\206\350\257\264\346\230\216.docx" "b/product-server-project-web/doc/\351\224\231\350\257\257\344\273\243\347\240\201\350\257\246\347\273\206\350\257\264\346\230\216.docx"
deleted file mode 100644
index 356b443..0000000
--- "a/product-server-project-web/doc/\351\224\231\350\257\257\344\273\243\347\240\201\350\257\246\347\273\206\350\257\264\346\230\216.docx"
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/base-server-core-1.0.0-releases.jar b/product-server-project-web/lib/base-server-core-1.0.0-releases.jar
deleted file mode 100644
index 704987c..0000000
--- a/product-server-project-web/lib/base-server-core-1.0.0-releases.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/ess-quartz-claim-1.0.0-SNAPSHOT.jar b/product-server-project-web/lib/ess-quartz-claim-1.0.0-SNAPSHOT.jar
deleted file mode 100644
index faff68b..0000000
--- a/product-server-project-web/lib/ess-quartz-claim-1.0.0-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/ess-quartz-job-1.0.0-SNAPSHOT.jar b/product-server-project-web/lib/ess-quartz-job-1.0.0-SNAPSHOT.jar
deleted file mode 100644
index 0dd7f70..0000000
--- a/product-server-project-web/lib/ess-quartz-job-1.0.0-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/ess-quartz-leave-1.0.0-SNAPSHOT.jar b/product-server-project-web/lib/ess-quartz-leave-1.0.0-SNAPSHOT.jar
deleted file mode 100644
index 0ac6950..0000000
--- a/product-server-project-web/lib/ess-quartz-leave-1.0.0-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/ess-quartz-roster-1.0.0-SNAPSHOT.jar b/product-server-project-web/lib/ess-quartz-roster-1.0.0-SNAPSHOT.jar
deleted file mode 100644
index 372f964..0000000
--- a/product-server-project-web/lib/ess-quartz-roster-1.0.0-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/ess-quartz-workflow-1.0.0-SNAPSHOT.jar b/product-server-project-web/lib/ess-quartz-workflow-1.0.0-SNAPSHOT.jar
deleted file mode 100644
index f06f46a..0000000
--- a/product-server-project-web/lib/ess-quartz-workflow-1.0.0-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/jodconverter-2.2.2.jar b/product-server-project-web/lib/jodconverter-2.2.2.jar
deleted file mode 100644
index d033256..0000000
--- a/product-server-project-web/lib/jodconverter-2.2.2.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/jodconverter-core-3.0-beta-4.jar b/product-server-project-web/lib/jodconverter-core-3.0-beta-4.jar
deleted file mode 100644
index af626da..0000000
--- a/product-server-project-web/lib/jodconverter-core-3.0-beta-4.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/mrc-ess-server-util-1.0.0-SNAPSHOT.jar b/product-server-project-web/lib/mrc-ess-server-util-1.0.0-SNAPSHOT.jar
deleted file mode 100644
index 2cfe090..0000000
--- a/product-server-project-web/lib/mrc-ess-server-util-1.0.0-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/product-server-core-1.0.0-RELEASES.jar b/product-server-project-web/lib/product-server-core-1.0.0-RELEASES.jar
deleted file mode 100644
index dea97f0..0000000
--- a/product-server-project-web/lib/product-server-core-1.0.0-RELEASES.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/lib/spring-server-master-1.2.6.6.jar b/product-server-project-web/lib/spring-server-master-1.2.6.6.jar
deleted file mode 100644
index 3a8977d..0000000
--- a/product-server-project-web/lib/spring-server-master-1.2.6.6.jar
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/license001.dat b/product-server-project-web/license001.dat
deleted file mode 100644
index 008e7c8..0000000
--- a/product-server-project-web/license001.dat
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/license002.dat b/product-server-project-web/license002.dat
deleted file mode 100644
index d7e2d6d..0000000
--- a/product-server-project-web/license002.dat
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/license003.dat b/product-server-project-web/license003.dat
deleted file mode 100644
index d0dc49e..0000000
--- a/product-server-project-web/license003.dat
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/license004.dat b/product-server-project-web/license004.dat
deleted file mode 100644
index fbb4c08..0000000
--- a/product-server-project-web/license004.dat
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/license005.dat b/product-server-project-web/license005.dat
deleted file mode 100644
index fe8246a..0000000
--- a/product-server-project-web/license005.dat
+++ /dev/null
Binary files differ
diff --git a/product-server-project-web/pom.xml b/product-server-project-web/pom.xml
deleted file mode 100644
index 7d2c6cd..0000000
--- a/product-server-project-web/pom.xml
+++ /dev/null
@@ -1,314 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>product-project-server-web</artifactId>
- <packaging>jar</packaging>
- <name>product-project-server-web</name>
- <description>product-project-server-web</description>
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <profileActive>dev</profileActive>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
-
- </profile>
-
- <profile>
- <id>test</id>
- <properties>
- <profileActive>test</profileActive>
- </properties>
- </profile>
-
- <profile>
- <id>prod</id>
- <properties>
- <profileActive>prod</profileActive>
- </properties>
- </profile>
-
- </profiles>
- <dependencies>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-common</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-util</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-admin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-quartz</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-org-admin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-administration</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-mq</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server-base</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server-contract</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server-customer</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-file</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <!-- releases -->
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-core</artifactId>
- <version>1.0.0-releases</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server-customer</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server-contract</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-project-server-base</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-collections4</artifactId>
- <version>4.1</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-report</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-data-export-import</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-tool-flow</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-tool-mvc</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-auth</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-announcement</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.lx</groupId>
- <artifactId>product-server-tool-table</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.spring</groupId>
- <artifactId>spring-server-master</artifactId>
- <version>1.2.6.6</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- 鎵揓AR鍖� -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <!-- 涓嶆墦鍖呰祫婧愭枃浠讹紙閰嶇疆鏂囦欢鍜屼緷璧栧寘鍒嗗紑锛� -->
- <excludes>
- <exclude>*.properties</exclude>
- <exclude>*.xml</exclude>
- </excludes>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- <!-- MANIFEST.MF 涓� Class-Path 鍔犲叆鍓嶇紑 -->
- <classpathPrefix>lib/</classpathPrefix>
- <!-- jar鍖呬笉鍖呭惈鍞竴鐗堟湰鏍囪瘑 -->
- <useUniqueVersions>true</useUniqueVersions>
- <!--鎸囧畾鍏ュ彛绫� -->
- <mainClass>com.lx.Application</mainClass>
- </manifest>
- <manifestEntries>
- <!--MANIFEST.MF 涓� Class-Path 鍔犲叆璧勬簮鏂囦欢鐩綍 -->
- <Class-Path>./resources/</Class-Path>
- </manifestEntries>
-
- </archive>
- <outputDirectory>${project.build.directory}</outputDirectory>
- </configuration>
- </plugin>
-
- <!-- 璇ユ彃浠剁殑浣滅敤鏄敤浜庡鍒朵緷璧栫殑jar鍖呭埌鎸囧畾鐨勬枃浠跺す閲� -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-dependencies</id>
- <phase>package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}/lib/</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <!-- 璇ユ彃浠剁殑浣滅敤鏄敤浜庡鍒舵寚瀹氱殑鏂囦欢 -->
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution> <!-- 澶嶅埗閰嶇疆鏂囦欢 -->
- <id>copy-resources</id>
- <phase>package</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <includes>
- <include>*.properties</include>
- <include>*.yml</include>
- <include>*.xml</include>
- <include>*.txt</include>
- </includes>
- </resource>
- </resources>
- <outputDirectory>${project.build.directory}/resources</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <!-- SpringBoot 鎵撳寘鎻掍欢锛屾妸 maven-jar-plugin 鎵撴垚鐨刯ar鍖呴噸鏂版墦鎴愬彲杩愯jar鍖� -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!-- 閲嶅啓鍖呭惈渚濊禆锛屽寘鍚笉瀛樺湪鐨勪緷璧栵紝jar閲屾病鏈塸om閲岀殑渚濊禆 -->
- <includes>
- <include>
- <groupId>null</groupId>
- <artifactId>null</artifactId>
- </include>
- </includes>
- <includeSystemScope>true</includeSystemScope>
- <layout>ZIP</layout>
- <!-- 浣跨敤澶栭儴閰嶇疆鏂囦欢锛宩ar鍖呴噷娌℃湁璧勬簮鏂囦欢 -->
- <addResources>true</addResources>
- <outputDirectory>${project.build.directory}</outputDirectory>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
- <!-- 鎷疯礉鏂囦欢 <build>
- <finalName>lx-server</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.lx.Application</mainClass>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
-
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>copy</id>
- <phase>package</phase>
- <configuration>
- <tasks>
- <copy file="${project.build.directory}/lx-server.jar" tofile="D:/lxworkspaces/product-server-install/resources/lx-server.jar" overwrite="true"/>
- <copy file="${project.build.directory}/lx-server.jar" tofile="D:/lxworkspaces/product-server-install/bin/product-server/lx-server.jar" overwrite="true"/>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
-
- </build> -->
-
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://47.75.52.144:8086/nexus/content/repositories/releases</url>
- </repository>
- </distributionManagement>
-</project>
diff --git a/product-server-project-web/src/main/java/META-INF/MANIFEST.MF b/product-server-project-web/src/main/java/META-INF/MANIFEST.MF
deleted file mode 100644
index 254272e..0000000
--- a/product-server-project-web/src/main/java/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Class-Path:
-
diff --git a/product-server-project-web/src/main/java/com/product/InitialLoad.java b/product-server-project-web/src/main/java/com/product/InitialLoad.java
deleted file mode 100644
index 2e9cf62..0000000
--- a/product-server-project-web/src/main/java/com/product/InitialLoad.java
+++ /dev/null
@@ -1,58 +0,0 @@
-package com.product;
-
-import com.google.common.collect.Lists;
-import com.product.common.utils.spring.SpringUtils;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.util.ReflectionUtils;
-
-import java.lang.reflect.Method;
-import java.util.List;
-
-/**
- * @Author cheng
- * @Description 绯荤粺鍚姩鍒濆鍖栧姞杞�
- * @Date 2021/11/8 15:14
- * @Version 1.0
- */
-public class InitialLoad {
-
- private static Logger logger = LoggerFactory.getLogger(InitialLoad.class);
- /**
- * 鍒濆鍖栧姞杞絙ean.method 鍙帴鍙楁棤鍙傛柟娉�
- */
- private static List<String> initMethods = Lists.newArrayList(
- "sysJobService.init",
- "userOperService.initUserSignature"
- );
-
- public static void runInitialization() {
- for (int i = 0; i < initMethods.size(); i++) {
- String beanMethod = initMethods.get(i);
- if (beanMethod.indexOf('.') > -1) {
- String[] p = beanMethod.split("\\.");
- execute(p[0], p[1]);
- //鍒犻櫎宸叉墽琛岃繃鐨勬柟娉曢槻姝㈤噸澶嶅垵濮嬪寲
- initMethods.remove(i);
- i--;
- }
- }
- }
-
- private static void execute(String beanName, String methodName) {
- try {
- Object bean = SpringUtils.getBean(beanName);
- Method method = null;
- if (bean != null) {
- method = ReflectionUtils.findMethod(bean.getClass(), methodName);
- }
- if (bean == null || method == null) {
- throw new ReflectiveOperationException(" execute bean or method not exist ! ");
- }
- ReflectionUtils.invokeMethod(method, bean);
- } catch (Exception e) {
- logger.error("execute init method " + beanName + "." + methodName + " error !", e);
- }
- }
-
-}
diff --git a/product-server-project-web/src/main/java/com/product/ProjectApplication.java b/product-server-project-web/src/main/java/com/product/ProjectApplication.java
deleted file mode 100644
index 076198b..0000000
--- a/product-server-project-web/src/main/java/com/product/ProjectApplication.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.product;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
-import org.springframework.boot.builder.SpringApplicationBuilder;
-import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
-import org.springframework.util.ResourceUtils;
-
-import com.product.admin.config.RegistValidate;
-import com.product.core.cache.DataPoolCacheImpl;
-import com.product.core.config.Global;
-import com.product.core.connection.DataSourceManager;
-import com.product.core.spring.context.SpringMVCContextHolder;
-
-
-@SpringBootApplication(exclude = DataSourceAutoConfiguration.class, scanBasePackages = {"com.product", "org.spring.service.core", "com.home"})
-public class ProjectApplication extends SpringBootServletInitializer {
-
- @Override
- protected SpringApplicationBuilder configure(SpringApplicationBuilder applicationBuilder) {
- return applicationBuilder.sources(ProjectApplication.class);
- }
-
- public static void main(String[] args) {
- try {
- SpringApplication.run(ProjectApplication.class, args);
- boolean cacheFlat = DataPoolCacheImpl.getInstance().cacheALLData();
- boolean codeFlat = DataPoolCacheImpl.getInstance().initCodeManager();
- boolean serialFlat = DataPoolCacheImpl.getInstance().initSerialNumberManager();
- RegistValidate.getInstance().registValidateParameter();
- boolean connFlat = DataSourceManager.getInstance().initClientConnectionPool();
- InitialLoad.runInitialization();
- String rootPath = ResourceUtils.getURL("classpath:").getPath();
- Global.setPropertyValue("root.path", rootPath);
- Global.setPropertyValue("jdk.home", System.getProperties().getProperty("java.home"));
-// SpringBeanUtil.getBean(CreateSignatureFile.class).analysisSignaturePatch();
- SpringMVCContextHolder.getSystemLogger().info("root.path:" + rootPath);
- SpringMVCContextHolder.getSystemLogger().info("jdk.home:" + System.getProperties().getProperty("java.home"));
- if (cacheFlat && codeFlat && serialFlat && connFlat) {
- SpringMVCContextHolder.getSystemLogger().info("Successful System Startup ! ");
- } else {
- SpringMVCContextHolder.getSystemLogger().error("System startup failed, Please contact the administrator!");
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-}
diff --git a/product-server-project-web/src/main/resources/application-base.properties b/product-server-project-web/src/main/resources/application-base.properties
deleted file mode 100644
index 52cb3d3..0000000
--- a/product-server-project-web/src/main/resources/application-base.properties
+++ /dev/null
@@ -1,196 +0,0 @@
-#======================================#
-#=============\u7CFB\u7EDF\u53C2\u6570 \u76F8\u5173\u914D\u7F6E==============#
-#======================================#
-
-#\u4E0A\u4F20\u6587\u4EF6\u8DEF\u5F84,\u7EDD\u5BF9
-#\u542F\u7528\u65E5\u5FD7\u6253\u5370
-logger.isEnable=true
-#\u65E5\u5FD7\u6253\u5370\u6307\u5B9A\u63A5\u53E3\uFF0C*\u8868\u793A\u5168\u90E8\u6253\u5370\uFF0C\u7A7A\u8868\u793A\u5168\u90E8\u4E0D\u6253\u5370\uFF0C\u6307\u5B9A\u591A\u4E2A\u63A5\u53E3\u9017\u53F7\u5206\u9694
-logger.print.api=*
-#\u662F\u5426\u7ACB\u5373\u6253\u5370\uFF0Cfalse\uFF1A\u63A5\u53E3\u6700\u540E\u4E00\u6B21\u6027\u6253\u5370 true\uFF1A\u8C03\u7528\u5373\u6253\u5370
-logger.print.isAtOnce=false
-#\u662F\u5426\u542F\u7528\u767B\u5F55\u63A5\u53E3\u7528\u6237\u540D\u5BC6\u7801\u52A0\u5BC6
-login.ecc.isEnable=true
-#\u662F\u5426\u542F\u7528\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1
-signature.isEnable=true
-#\u5728\u542F\u7528\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1\u65F6\uFF0C\u6392\u9664\u6307\u5B9A\u63A5\u53E3\u65E0\u9700\u7B7E\u540D\u8BA4\u8BC1
-signature.exclude.path=/api/rsa/getKey/v1,/api/token/refresh/v1
-#\u7B7E\u540D\u8BA4\u8BC1Key
-signature.key=299cb5bb4c9040a29c58304c25001d72
-#\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1\u6709\u6548\u671F\uFF0C\u5355\u4F4D\u79D2,0\u8868\u793A\u4E0D\u9A8C\u8BC1
-signature.expire=0
-
-#token\u8FC7\u671F\u65F6\u95F4\uFF0C\u5C0F\u65F6 6\u5206\u949F
-token.expiration=0.1
-#\u5FD8\u8BB0\u5BC6\u7801\u90AE\u4EF6\u4E2DToken\u7684\u8FC7\u671F\u65F6\u95F4
-mail.token.expiration=1
-#\u63A5\u53E3token\u8FC7\u671F\uFF0C\u5237\u65B0token\u7684\u63A5\u53E3\u4F7F\u7528\u7684Token\u8FC7\u671F\u65F6\u95F4
-refresh.token.expiration=1
-#token\u9A8C\u8BC1\u3001\u767B\u5F55\u9A8C\u8BC1\uFF0C\u6392\u9664URL,\u9017\u53F7\u5206\u9694
-token.exclude.path=/api/token/refresh/v1,/login,/login/v1,/api/applyinfo/get-apply-info,/api/personalcenter/send-updatePwdEmail/v1,/api/language/login-language/v1,/api/lable_internationalization/list_lable_internation/v1,/api/lable_internationalization/list-label-internation-web/v1,/api/personalcenter/check-token/v1,/api/rsa/getKey/v1
-#\u662F\u5426\u542F\u7528\u529F\u80FD\u6743\u9650\u9A8C\u8BC1
-url.valid.isEnable=false
-#\u4E0D\u9700\u8981\u6743\u9650\u9A8C\u8BC1\u63A5\u53E3\u5730\u5740,\u4E0D\u80FD\u914D/v1\u3001v2\u7B49
-url.valid.pass=/api/prompt/business/findPrompt,/api/dictionary/list-dictionary-byname,/logout,/api/functions/onload-button,/api/language/login-language/v1,/api/fileManager/get-file-info,/api/language/list-international-fields,/api/user/language/update-language,/api/staff-manager/upload_staff_avatar
-#\u662F\u5426\u6253\u5370\u9519\u8BEF\u4FE1\u606F
-info.print=true
-error.info.print=true
-#\u662F\u5426\u6253\u5370\u9519\u8BEF\u5806\u690E\u4FE1\u606F
-error.stack.trace.print=true
-#\u662F\u5426\u4FDD\u5B58\u9519\u8BEF\u4FE1\u606F
-error.info.save=true
-
-#\u662F\u5426\u542F\u7528SQL\u76D1\u63A7,\u9ED8\u8BA4\u4E0D\u542F\u7528,\u662F\u5426\u5728\u540E\u53F0\u6253\u5370sql\u8BED\u53E5
-isMonitorSQL = false
-#\u67E5\u8BE2\u65F6\u95F4\u8D85\u8FC7\u591A\u5C11\u79D2\u7684sql\u8BED\u53E5\u8BB0\u5F55\u5230\u5206\u6790\u6570\u636E\u5E93\u4E2D\uFF0C\u65F6\u95F4\u5355\u4F4D\uFF1A\u79D2
-monitorSQLTime = 3
-#\u662F\u5426\u542F\u7528\u7CFB\u7EDF\u54CD\u5E94
-isMonitorRequest = false
-#\u7CFB\u7EDF\u54CD\u5E94\u65F6\u95F4\u8D85\u8FC7\u591A\u5C11\u79D2\uFF0C\u8BB0\u5F55\u5230\u76D1\u63A7\u6570\u636E\u5E93\u4E2D
-monitorRequestTime = 4
-#\u56FE\u5F62\u9A8C\u8BC1\u7801\u751F\u6210\u7684\u56FE\u7247\u8DEF\u5F84
-upload.file.temp.path=./lx_file/aptcha
-#\u4E0B\u62C9\u9009\u62E9\u663E\u793A\u6761\u6570
-prompt.show.rows=20
-#\u662F\u5426\u4FDD\u5B58\u501F\u8BEF\u4FE1\u606F
-error.message.save=true
-#\u4E0A\u4F20\u6587\u4EF6\u5B58\u653E\u76EE\u5F55
-upload.file.path=./lx_file/upload
-#license鏂囦欢璺緞
-license.path=./
-#\u4E0A\u4F20\u6587\u4EF6\u5B58\u653E\u4E34\u65F6\u76EE\u5F55
-upload.file.temp.path=./lx_file/temp
-#\u4E0A\u4F20\u5355\u4E2A\u6587\u4EF6\u5927\u5C0F(\u9ED8\u8BA41M)
-upload.file.max.size=1048576
-#\u4E0A\u4F20\u603B\u6587\u4EF6\u5927\u5C0F(\u9ED8\u8BA410M)
-upload.max.size=10485760
-#\u7CFB\u7EDF\u7F13\u5B58\u5237\u65B0\u9891\u7387\uFF0C\u6BEB\u79D2
-cache.refresh.rate=2000
-#======================================#
-#==============\u9ED8\u8BA4\u6570\u636E\u6E90\u8BBE\u7F6E ==============#
-#======================================#
-#\u6570\u636E\u5E93\u8FDE\u63A5\u6C60\u7C7B\u578B druid\u3001c3p0
-data.source.pool.type=druid
-data.source.name=default
-data.source.type=mysql
-data.source.driver=com.mysql.jdbc.Driver
-##################base###############################
-data.source.url=jdbc:mysql://192.168.0.199:3306/lx_product_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-data.source.user=mr_base_user
-data.source.password=aEx2pTFts2N74MpA
-#-------------------------druid\u8FDE\u63A5\u6C60\u7684\u914D\u7F6E\u4FE1\u606F------------------------
-# \u521D\u59CB\u5316\u5927\u5C0F\uFF0C\u6700\u5C0F\uFF0C\u6700\u5927
-druid.datasource.initialSize=5
-#\u6700\u5C0F\u8FDE\u63A5\u6C60\u6570\u91CF
-druid.datasource.minIdle=50
-#\u6700\u5927\u8FDE\u63A5\u6C60\u6570\u91CF
-druid.datasource.maxActive=200
-# \u914D\u7F6E\u83B7\u53D6\u8FDE\u63A5\u7B49\u5F85\u8D85\u65F6\u7684\u65F6\u95F4 1\u5206\u949F
-druid.datasource.maxWait=60000
-# \u914D\u7F6E\u95F4\u9694\u591A\u4E45\u624D\u8FDB\u884C\u4E00\u6B21\u68C0\u6D4B\uFF0C\u68C0\u6D4B\u9700\u8981\u5173\u95ED\u7684\u7A7A\u95F2\u8FDE\u63A5\uFF0C\u5355\u4F4D\u662F\u6BEB\u79D2 10\u5206\u949F\u5C0F\u65F6\u68C0\u67E5
-druid.datasource.timeBetweenEvictionRunsMillis=600000
-# \u914D\u7F6E\u4E00\u4E2A\u8FDE\u63A5\u5728\u6C60\u4E2D\u6700\u5C0F\u751F\u5B58\u7684\u65F6\u95F4\uFF0C\u5355\u4F4D\u662F\u6BEB\u79D2 \u8FDE\u63A5\u4FDD\u6301\u7A7A\u95F2\u800C\u4E0D\u88AB\u9A71\u9010\u7684\u6700\u5C0F\u65F6\u95F4
-druid.datasource.minEvictableIdleTimeMillis=1800000
-#\u7528\u6765\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\u7684sql\uFF0C\u8981\u6C42\u662F\u4E00\u4E2A\u67E5\u8BE2\u8BED\u53E5
-druid.datasource.validationQuery=SELECT 1
-#\u5EFA\u8BAE\u914D\u7F6E\u4E3Atrue\uFF0C\u4E0D\u5F71\u54CD\u6027\u80FD\uFF0C\u5E76\u4E14\u4FDD\u8BC1\u5B89\u5168\u6027\u3002\u7533\u8BF7\u8FDE\u63A5\u7684\u65F6\u5019\u68C0\u6D4B\uFF0C\u5982\u679C\u7A7A\u95F2\u65F6\u95F4\u5927\u4E8EtimeBetweenEvictionRunsMillis\uFF0C\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\u3002
-druid.datasource.testWhileIdle=true
-#\u7533\u8BF7\u8FDE\u63A5\u65F6\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\uFF0C\u505A\u4E86\u8FD9\u4E2A\u914D\u7F6E\u4F1A\u964D\u4F4E\u6027\u80FD\u3002
-druid.datasource.testOnBorrow=true
-#\u5F52\u8FD8\u8FDE\u63A5\u65F6\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\uFF0C\u505A\u4E86\u8FD9\u4E2A\u914D\u7F6E\u4F1A\u964D\u4F4E\u6027\u80FD\u3002
-druid.datasource.testOnReturn=false
-#\uFF0C\u589E\u5F3AtimeBetweenEvictionRunsMillis\u7684\u5468\u671F\u6027\u8FDE\u63A5\u68C0\u67E5\uFF0CminIdle\u5185\u7684\u7A7A\u95F2\u8FDE\u63A5\uFF0C\u6BCF\u6B21\u68C0\u67E5\u5F3A\u5236\u9A8C\u8BC1\u8FDE\u63A5\u6709\u6548\u6027
-druid.datasource.keepAlive=true
-#\u8FDE\u63A5\u6CC4\u9732\u68C0\u67E5\uFF0C\u6253\u5F00removeAbandoned\u529F\u80FD , \u8FDE\u63A5\u4ECE\u8FDE\u63A5\u6C60\u501F\u51FA\u540E\uFF0C\u957F\u65F6\u95F4\u4E0D\u5F52\u8FD8\uFF0C\u5C06\u89E6\u53D1\u5F3A\u5236\u56DE\u8FDE\u63A5\u3002
-#\u56DE\u6536\u5468\u671F\u968FtimeBetweenEvictionRunsMillis\u8FDB\u884C\uFF0C\u5982\u679C\u8FDE\u63A5\u4E3A\u4ECE\u8FDE\u63A5\u6C60\u501F\u51FA\u72B6\u6001\uFF0C\u5E76\u4E14\u672A\u6267\u884C\u4EFB\u4F55sql\uFF0C\u5E76\u4E14\u4ECE\u501F\u51FA\u65F6\u95F4\u8D77\u5DF2\u8D85\u8FC7removeAbandonedTimeout\u65F6\u95F4\uFF0C
-#\u5219\u5F3A\u5236\u5F52\u8FD8\u8FDE\u63A5\u5230\u8FDE\u63A5\u6C60\u4E2D\u3002
-druid.datasource.removeAbandoned=true
-#\u8FDE\u63A5\u56DE\u6536\u7684\u8D85\u65F6\u65F6\u95F4\uFF1B\u5355\u4F4D\u4E3A\u6BEB\u79D2,5\u5206\u949F
-druid.datasource.removeAbandonedTimeout=300000
-# \u6253\u5F00PSCache\uFF0C\u5E76\u4E14\u6307\u5B9A\u6BCF\u4E2A\u8FDE\u63A5\u4E0APSCache\u7684\u5927\u5C0F
-druid.datasource.poolPreparedStatements=true
-#\u662F\u5426\u7F13\u5B58preparedStatement\uFF0C\u4E5F\u5C31\u662FPSCache\u3002PSCache\u5BF9\u652F\u6301\u6E38\u6807\u7684\u6570\u636E\u5E93\u6027\u80FD\u63D0\u5347\u5DE8\u5927\uFF0C\u6BD4\u5982\u8BF4oracle\u3002\u5728mysql\u4E0B\u5EFA\u8BAE\u5173\u95ED\u3002
-druid.datasource.maxPoolPreparedStatementPerConnectionSize=100
-# \u914D\u7F6E\u76D1\u63A7\u7EDF\u8BA1\u62E6\u622A\u7684filters\uFF0C\u53BB\u6389\u540E\u76D1\u63A7\u754C\u9762sql\u65E0\u6CD5\u7EDF\u8BA1\uFF0C'wall'\u7528\u4E8E\u9632\u706B\u5899
-druid.datasource.filters=stat,wall,log4j
-# \u901A\u8FC7connectProperties\u5C5E\u6027\u6765\u6253\u5F00mergeSql\u529F\u80FD\uFF1B\u6162SQL\u8BB0\u5F55
-druid.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
-#======================================#
-#========== Server settings ===========#
-#======================================#
-server.servlet.context-path=/lx
-server.port=9998
-#HTTP encoding
-spring.servlet.multipart.enabled=false
-spring.http.encoding.force=true
-spring.http.encoding.charset=UTF-8
-spring.http.encoding.enabled=true
-server.tomcat.uri-encoding=UTF-8
-#\u8BBE\u7F6Esession\u8D85\u65F6\u65F6\u95F4
-server.servlet.session.timeout=72000
-
-
-
-spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
-
-awsS3.bucketName=mrc-ats
-awsS3.region = ap-southeast-1
-awsS3.accessKey=AKIAUHVHXZNNLAJQZANJ
-awsS3.secretKey=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
-
-#email
-email.serverhost=smtp.exmail.qq.com
-email.serverport=465
-email.username=notification@mrcintl.group
-email.password=D4hrLWLEP3fh9wBg
-email.fromaddress=notification@mrcintl.group
-email.fromname=MRC
-
-#eQuest
-equest.usarname=MRC-user
-equest.password=d4cember4$
-
-#parse_resume
-parse_resume.username=u100220
-parse_resume.password=mrc20190522
-
-#\u6307\u5B9A\u5730\u7406\u4F4D\u7F6E\u7684Path
-assign.geoPath=1,7
-
-# \u53D1\u9001\u90AE\u4EF6\u914D\u7F6E
-spring.mail.host=smtp.qq.com
-spring.mail.port=465
-spring.mail.username=1074825718@qq.com
-spring.mail.password=zihjazyfgsofhbbj
-
-
-#\u521B\u5EFA\u8D26\u53F7\u521D\u59CB\u5BC6\u7801
-initial.pwd=123456
-
-#\u91CD\u7F6E\u5BC6\u7801url
-#resetpwd.url=https://testbaseserver.kaifa000.com/#/reset-password
-#\u7BA1\u7406\u5458\u8DF3\u8F6C\u5730\u5740
-resetpwd.mrcurl=https://qtest-base-frontend.kaifa000.com/#/reset-password
-#\u666E\u901A\u5458\u5DE5\u8DF3\u8F6C\u5730\u5740
-resetpwd.essurl=https://qtest-base-frontend.kaifa000.com/#/reset-password
-
-#\u7BA1\u7406\u5458\u767B\u5F55\u5730\u5740
-resetpwd.mrclogin_url=https://qtest-base-frontend.kaifa000.com/#/login
-#\u5458\u5DE5\u767B\u5F55\u5730\u5740
-resetpwd.esslogin_url=https://qtest-base-frontend.kaifa000.com/#/login
-
-#SendGrid\u8D26\u6237\u548C\u5BC6\u94A5
-sendGrid.mail.user=no-reply@essencehr.io
-sendGrid.mail.key=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
-
-#mailgun\u7CFB\u7EDF\u90AE\u4EF6\u914D\u7F6E
-mailgun.mail.user=mail.purtato.com
-mailgun.mail.key=8d52b0a748b20c61331587fa9a3fe6fc-cb3791c4-8cf158ef
-
-#\u53BB\u9644\u4EF6\u5BB9\u5668\u7BA1\u7406\uFF0C\u81EA\u52A8\u521B\u5EFA\u5BB9\u5668\u7684\u63A5\u53E3\u5730\u5740,\u7BA1\u7406\u8D26\u53F7\u8FDB\u53BB\u751F\u6210
-upload.url=https://mrcbase.blob.core.windows.net/?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#\u53BB\u9644\u4EF6\u5BB9\u5668\u7BA1\u7406\uFF0C\u81EA\u52A8\u521B\u5EFA\u5BB9\u5668\u7684\u4E0A\u4F20\u7684key\uFF0C\u5728\u7BA1\u7406\u8D26\u53F7\u4E2D\u521B\u5EFA
-upload.key=?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#upload.connection_string=BlobEndpoint=https://mrcbase.blob.core.windows.net/;QueueEndpoint=https://mrcbase.queue.core.windows.net/;FileEndpoint=https://mrcbase.file.core.windows.net/;TableEndpoint=https://mrcbase.table.core.windows.net/;SharedAccessSignature=sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-upload.connection_string=DefaultEndpointsProtocol=https;AccountName=mrcbase;AccountKey=ulFYmOyQUA+8K8M5JUgMs2heohRW1dIkkdLtbl9L1+60AY9ySIbx7uxVrMY5UAdu9fm6qhBaslyBlCgWGS+dUA==;EndpointSuffix=core.windows.net
-
diff --git a/product-server-project-web/src/main/resources/application-dev.properties b/product-server-project-web/src/main/resources/application-dev.properties
deleted file mode 100644
index cea0931..0000000
--- a/product-server-project-web/src/main/resources/application-dev.properties
+++ /dev/null
@@ -1,199 +0,0 @@
-#======================================#
-#=============\u7cfb\u7edf\u53c2\u6570 \u76f8\u5173\u914d\u7f6e==============#
-#======================================#
-
-#\u4e0a\u4f20\u6587\u4ef6\u8def\u5f84,\u7edd\u5bf9
-#\u542f\u7528\u65e5\u5fd7\u6253\u5370
-logger.isEnable=true
-#\u65e5\u5fd7\u6253\u5370\u6307\u5b9a\u63a5\u53e3\uff0c*\u8868\u793a\u5168\u90e8\u6253\u5370\uff0c\u7a7a\u8868\u793a\u5168\u90e8\u4e0d\u6253\u5370\uff0c\u6307\u5b9a\u591a\u4e2a\u63a5\u53e3\u9017\u53f7\u5206\u9694
-logger.print.api=*
-#\u662f\u5426\u7acb\u5373\u6253\u5370\uff0cfalse\uff1a\u63a5\u53e3\u6700\u540e\u4e00\u6b21\u6027\u6253\u5370 true\uff1a\u8c03\u7528\u5373\u6253\u5370
-logger.print.isAtOnce=false
-#\u662f\u5426\u542f\u7528\u767b\u5f55\u63a5\u53e3\u7528\u6237\u540d\u5bc6\u7801\u52a0\u5bc6
-login.ecc.isEnable=true
-#\u662f\u5426\u542f\u7528\u63a5\u53e3\u7b7e\u540d\u8ba4\u8bc1
-signature.isEnable=true
-#\u5728\u542f\u7528\u63a5\u53e3\u7b7e\u540d\u8ba4\u8bc1\u65f6\uff0c\u6392\u9664\u6307\u5b9a\u63a5\u53e3\u65e0\u9700\u7b7e\u540d\u8ba4\u8bc1
-signature.exclude.path=/api/rsa/getKey/v1,/api/token/refresh/v1
-#\u7b7e\u540d\u8ba4\u8bc1Key
-signature.key=299cb5bb4c9040a29c58304c25001d72
-#\u63a5\u53e3\u7b7e\u540d\u8ba4\u8bc1\u6709\u6548\u671f\uff0c\u5355\u4f4d\u79d2,0\u8868\u793a\u4e0d\u9a8c\u8bc1
-signature.expire=0
-
-#token\u8fc7\u671f\u65f6\u95f4\uff0c\u5c0f\u65f6 6\u5206\u949f
-token.expiration=1
-#\u5fd8\u8bb0\u5bc6\u7801\u90ae\u4ef6\u4e2dToken\u7684\u8fc7\u671f\u65f6\u95f4
-mail.token.expiration=1
-#\u63a5\u53e3token\u8fc7\u671f\uff0c\u5237\u65b0token\u7684\u63a5\u53e3\u4f7f\u7528\u7684Token\u8fc7\u671f\u65f6\u95f4
-refresh.token.expiration=1
-#token\u9a8c\u8bc1\u3001\u767b\u5f55\u9a8c\u8bc1\uff0c\u6392\u9664URL,\u9017\u53f7\u5206\u9694
-token.exclude.path=/api/token/refresh/v1,/login,/login/v1,/api/applyinfo/get-apply-info,/api/personalcenter/send-updatePwdEmail/v1,/api/language/login-language/v1,/api/lable_internationalization/list_lable_internation/v1,/api/lable_internationalization/list-label-internation-web/v1,/api/personalcenter/check-token/v1,/api/rsa/getKey/v1
-#\u662f\u5426\u542f\u7528\u529f\u80fd\u6743\u9650\u9a8c\u8bc1
-url.valid.isEnable=false
-#\u4e0d\u9700\u8981\u6743\u9650\u9a8c\u8bc1\u63a5\u53e3\u5730\u5740,\u4e0d\u80fd\u914d/v1\u3001v2\u7b49
-url.valid.pass=/api/prompt/business/findPrompt,/api/dictionary/list-dictionary-byname,/logout,/api/functions/onload-button,/api/language/login-language/v1,/api/fileManager/get-file-info,/api/language/list-international-fields,/api/user/language/update-language,/api/staff-manager/upload_staff_avatar,api/rsa/getKey/v1
-#\u662f\u5426\u6253\u5370\u9519\u8bef\u4fe1\u606f
-info.print=true
-error.info.print=true
-#\u662f\u5426\u6253\u5370\u9519\u8bef\u5806\u690e\u4fe1\u606f
-error.stack.trace.print=true
-#\u662f\u5426\u4fdd\u5b58\u9519\u8bef\u4fe1\u606f
-error.info.save=true
-
-#\u662f\u5426\u542f\u7528SQL\u76d1\u63a7,\u9ed8\u8ba4\u4e0d\u542f\u7528,\u662f\u5426\u5728\u540e\u53f0\u6253\u5370sql\u8bed\u53e5
-isMonitorSQL = false
-#\u67e5\u8be2\u65f6\u95f4\u8d85\u8fc7\u591a\u5c11\u79d2\u7684sql\u8bed\u53e5\u8bb0\u5f55\u5230\u5206\u6790\u6570\u636e\u5e93\u4e2d\uff0c\u65f6\u95f4\u5355\u4f4d\uff1a\u79d2
-monitorSQLTime = 3
-#\u662f\u5426\u542f\u7528\u7cfb\u7edf\u54cd\u5e94
-isMonitorRequest = false
-#\u7cfb\u7edf\u54cd\u5e94\u65f6\u95f4\u8d85\u8fc7\u591a\u5c11\u79d2\uff0c\u8bb0\u5f55\u5230\u76d1\u63a7\u6570\u636e\u5e93\u4e2d
-monitorRequestTime = 4
-#\u56fe\u5f62\u9a8c\u8bc1\u7801\u751f\u6210\u7684\u56fe\u7247\u8def\u5f84
-#upload.file.temp.path=./lx_file/aptcha
-#\u4e0b\u62c9\u9009\u62e9\u663e\u793a\u6761\u6570
-prompt.show.rows=20
-#\u662f\u5426\u4fdd\u5b58\u501f\u8bef\u4fe1\u606f
-error.message.save=true
-#\u4e0a\u4f20\u6587\u4ef6\u5b58\u653e\u76ee\u5f55
-upload.file.path=./lx_file/upload
-#license\u6587\u4ef6\u8def\u5f84
-license.path=./
-#\u4e0a\u4f20\u6587\u4ef6\u5b58\u653e\u4e34\u65f6\u76ee\u5f55
-upload.file.temp.path=./lx_file/temp
-#\u4e0a\u4f20\u5355\u4e2a\u6587\u4ef6\u5927\u5c0f(\u9ed8\u8ba41M)
-upload.file.max.size=1048576
-#\u4e0a\u4f20\u603b\u6587\u4ef6\u5927\u5c0f(\u9ed8\u8ba410M)
-upload.max.size=10485760
-#\u7cfb\u7edf\u7f13\u5b58\u5237\u65b0\u9891\u7387\uff0c\u6beb\u79d2
-cache.refresh.rate=2000
-#======================================#
-#==============\u9ed8\u8ba4\u6570\u636e\u6e90\u8bbe\u7f6e ==============#
-#======================================#
-#\u6570\u636e\u5e93\u8fde\u63a5\u6c60\u7c7b\u578b druid\u3001c3p0
-data.source.pool.type=druid
-data.source.name=default
-data.source.type=mysql
-data.source.driver=com.mysql.jdbc.Driver
-
-##################local###############################
-data.source.url=jdbc:mysql://192.168.0.200:3306/product_db_qxlw?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=Asia/Shanghai
-data.source.user=root
-data.source.password=root123
-
-#-------------------------druid\u8fde\u63a5\u6c60\u7684\u914d\u7f6e\u4fe1\u606f------------------------
-# \u521d\u59cb\u5316\u5927\u5c0f\uff0c\u6700\u5c0f\uff0c\u6700\u5927
-druid.datasource.initialSize=5
-#\u6700\u5c0f\u8fde\u63a5\u6c60\u6570\u91cf
-druid.datasource.minIdle=50
-#\u6700\u5927\u8fde\u63a5\u6c60\u6570\u91cf
-druid.datasource.maxActive=200
-# \u914d\u7f6e\u83b7\u53d6\u8fde\u63a5\u7b49\u5f85\u8d85\u65f6\u7684\u65f6\u95f4 1\u5206\u949f
-druid.datasource.maxWait=60000
-# \u914d\u7f6e\u95f4\u9694\u591a\u4e45\u624d\u8fdb\u884c\u4e00\u6b21\u68c0\u6d4b\uff0c\u68c0\u6d4b\u9700\u8981\u5173\u95ed\u7684\u7a7a\u95f2\u8fde\u63a5\uff0c\u5355\u4f4d\u662f\u6beb\u79d2 10\u5206\u949f\u5c0f\u65f6\u68c0\u67e5
-druid.datasource.timeBetweenEvictionRunsMillis=600000
-# \u914d\u7f6e\u4e00\u4e2a\u8fde\u63a5\u5728\u6c60\u4e2d\u6700\u5c0f\u751f\u5b58\u7684\u65f6\u95f4\uff0c\u5355\u4f4d\u662f\u6beb\u79d2 \u8fde\u63a5\u4fdd\u6301\u7a7a\u95f2\u800c\u4e0d\u88ab\u9a71\u9010\u7684\u6700\u5c0f\u65f6\u95f4
-druid.datasource.minEvictableIdleTimeMillis=1800000
-#\u7528\u6765\u68c0\u6d4b\u8fde\u63a5\u662f\u5426\u6709\u6548\u7684sql\uff0c\u8981\u6c42\u662f\u4e00\u4e2a\u67e5\u8be2\u8bed\u53e5
-druid.datasource.validationQuery=SELECT 1
-#\u5efa\u8bae\u914d\u7f6e\u4e3atrue\uff0c\u4e0d\u5f71\u54cd\u6027\u80fd\uff0c\u5e76\u4e14\u4fdd\u8bc1\u5b89\u5168\u6027\u3002\u7533\u8bf7\u8fde\u63a5\u7684\u65f6\u5019\u68c0\u6d4b\uff0c\u5982\u679c\u7a7a\u95f2\u65f6\u95f4\u5927\u4e8etimeBetweenEvictionRunsMillis\uff0c\u6267\u884cvalidationQuery\u68c0\u6d4b\u8fde\u63a5\u662f\u5426\u6709\u6548\u3002
-druid.datasource.testWhileIdle=true
-#\u7533\u8bf7\u8fde\u63a5\u65f6\u6267\u884cvalidationQuery\u68c0\u6d4b\u8fde\u63a5\u662f\u5426\u6709\u6548\uff0c\u505a\u4e86\u8fd9\u4e2a\u914d\u7f6e\u4f1a\u964d\u4f4e\u6027\u80fd\u3002
-druid.datasource.testOnBorrow=true
-#\u5f52\u8fd8\u8fde\u63a5\u65f6\u6267\u884cvalidationQuery\u68c0\u6d4b\u8fde\u63a5\u662f\u5426\u6709\u6548\uff0c\u505a\u4e86\u8fd9\u4e2a\u914d\u7f6e\u4f1a\u964d\u4f4e\u6027\u80fd\u3002
-druid.datasource.testOnReturn=false
-#\uff0c\u589e\u5f3atimeBetweenEvictionRunsMillis\u7684\u5468\u671f\u6027\u8fde\u63a5\u68c0\u67e5\uff0cminIdle\u5185\u7684\u7a7a\u95f2\u8fde\u63a5\uff0c\u6bcf\u6b21\u68c0\u67e5\u5f3a\u5236\u9a8c\u8bc1\u8fde\u63a5\u6709\u6548\u6027
-druid.datasource.keepAlive=true
-#\u8fde\u63a5\u6cc4\u9732\u68c0\u67e5\uff0c\u6253\u5f00removeAbandoned\u529f\u80fd , \u8fde\u63a5\u4ece\u8fde\u63a5\u6c60\u501f\u51fa\u540e\uff0c\u957f\u65f6\u95f4\u4e0d\u5f52\u8fd8\uff0c\u5c06\u89e6\u53d1\u5f3a\u5236\u56de\u8fde\u63a5\u3002
-#\u56de\u6536\u5468\u671f\u968ftimeBetweenEvictionRunsMillis\u8fdb\u884c\uff0c\u5982\u679c\u8fde\u63a5\u4e3a\u4ece\u8fde\u63a5\u6c60\u501f\u51fa\u72b6\u6001\uff0c\u5e76\u4e14\u672a\u6267\u884c\u4efb\u4f55sql\uff0c\u5e76\u4e14\u4ece\u501f\u51fa\u65f6\u95f4\u8d77\u5df2\u8d85\u8fc7removeAbandonedTimeout\u65f6\u95f4\uff0c
-#\u5219\u5f3a\u5236\u5f52\u8fd8\u8fde\u63a5\u5230\u8fde\u63a5\u6c60\u4e2d\u3002
-druid.datasource.removeAbandoned=true
-#\u8fde\u63a5\u56de\u6536\u7684\u8d85\u65f6\u65f6\u95f4\uff1b\u5355\u4f4d\u4e3a\u6beb\u79d2,5\u5206\u949f
-druid.datasource.removeAbandonedTimeout=300000
-# \u6253\u5f00PSCache\uff0c\u5e76\u4e14\u6307\u5b9a\u6bcf\u4e2a\u8fde\u63a5\u4e0aPSCache\u7684\u5927\u5c0f
-druid.datasource.poolPreparedStatements=true
-#\u662f\u5426\u7f13\u5b58preparedStatement\uff0c\u4e5f\u5c31\u662fPSCache\u3002PSCache\u5bf9\u652f\u6301\u6e38\u6807\u7684\u6570\u636e\u5e93\u6027\u80fd\u63d0\u5347\u5de8\u5927\uff0c\u6bd4\u5982\u8bf4oracle\u3002\u5728mysql\u4e0b\u5efa\u8bae\u5173\u95ed\u3002
-druid.datasource.maxPoolPreparedStatementPerConnectionSize=100
-# \u914d\u7f6e\u76d1\u63a7\u7edf\u8ba1\u62e6\u622a\u7684filters\uff0c\u53bb\u6389\u540e\u76d1\u63a7\u754c\u9762sql\u65e0\u6cd5\u7edf\u8ba1\uff0c'wall'\u7528\u4e8e\u9632\u706b\u5899
-druid.datasource.filters=stat,wall,log4j
-# \u901a\u8fc7connectProperties\u5c5e\u6027\u6765\u6253\u5f00mergeSql\u529f\u80fd\uff1b\u6162SQL\u8bb0\u5f55
-druid.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
-#======================================#
-#========== Server settings ===========#
-#======================================#
-server.servlet.context-path=/lx
-server.port=9998
-#HTTP encoding
-spring.servlet.multipart.enabled=false
-spring.http.encoding.force=true
-spring.http.encoding.charset=UTF-8
-spring.http.encoding.enabled=true
-server.tomcat.uri-encoding=UTF-8
-#\u8bbe\u7f6esession\u8d85\u65f6\u65f6\u95f4
-server.servlet.session.timeout=72000
-
-
-
-spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
-
-awsS3.bucketName=mrc-ats
-awsS3.region = ap-southeast-1
-awsS3.accessKey=AKIAUHVHXZNNLAJQZANJ
-awsS3.secretKey=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
-
-#email
-email.serverhost=smtp.exmail.qq.com
-email.serverport=465
-email.username=notification@mrcintl.group
-email.password=D4hrLWLEP3fh9wBg
-email.fromaddress=notification@mrcintl.group
-email.fromname=MRC
-
-#eQuest
-equest.usarname=MRC-user
-equest.password=d4cember4$
-
-#parse_resume
-parse_resume.username=u100220
-parse_resume.password=mrc20190522
-
-#\u6307\u5b9a\u5730\u7406\u4f4d\u7f6e\u7684Path
-assign.geoPath=1,7
-
-# \u53d1\u9001\u90ae\u4ef6\u914d\u7f6e
-spring.mail.host=smtp.qq.com
-spring.mail.port=465
-spring.mail.username=1074825718@qq.com
-spring.mail.password=zihjazyfgsofhbbj
-
-
-#\u521b\u5efa\u8d26\u53f7\u521d\u59cb\u5bc6\u7801
-initial.pwd=123456
-
-#\u91cd\u7f6e\u5bc6\u7801url
-
-#\u7ba1\u7406\u5458\u8df3\u8f6c\u5730\u5740
-resetpwd.mrcurl=http://192.168.0.200:3000/#/reset-password
-#\u666e\u901a\u5458\u5de5\u8df3\u8f6c\u5730\u5740
-resetpwd.essurl=http://192.168.0.200:3000/#/reset-password
-
-#\u7ba1\u7406\u5458\u767b\u5f55\u5730\u5740
-resetpwd.mrclogin_url=http://192.168.0.200:3000/#/login
-#\u5458\u5de5\u767b\u5f55\u5730\u5740
-resetpwd.esslogin_url=http://192.168.0.200:3000/#/login
-
-#SendGrid\u8d26\u6237\u548c\u5bc6\u94a5
-sendGrid.mail.user=no-reply@essencehr.io
-sendGrid.mail.key=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
-
-#mailgun\u7cfb\u7edf\u90ae\u4ef6\u914d\u7f6e
-mailgun.mail.user=mail.purtato.com
-mailgun.mail.key=8d52b0a748b20c61331587fa9a3fe6fc-cb3791c4-8cf158ef
-
-#\u53bb\u9644\u4ef6\u5bb9\u5668\u7ba1\u7406\uff0c\u81ea\u52a8\u521b\u5efa\u5bb9\u5668\u7684\u63a5\u53e3\u5730\u5740,\u7ba1\u7406\u8d26\u53f7\u8fdb\u53bb\u751f\u6210
-upload.url=https://mrcbase.blob.core.windows.net/?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#\u53bb\u9644\u4ef6\u5bb9\u5668\u7ba1\u7406\uff0c\u81ea\u52a8\u521b\u5efa\u5bb9\u5668\u7684\u4e0a\u4f20\u7684key\uff0c\u5728\u7ba1\u7406\u8d26\u53f7\u4e2d\u521b\u5efa
-upload.key=?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#upload.connection_string=BlobEndpoint=https://mrcbase.blob.core.windows.net/;QueueEndpoint=https://mrcbase.queue.core.windows.net/;FileEndpoint=https://mrcbase.file.core.windows.net/;TableEndpoint=https://mrcbase.table.core.windows.net/;SharedAccessSignature=sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-upload.connection_string=DefaultEndpointsProtocol=https;AccountName=mrcbase;AccountKey=ulFYmOyQUA+8K8M5JUgMs2heohRW1dIkkdLtbl9L1+60AY9ySIbx7uxVrMY5UAdu9fm6qhBaslyBlCgWGS+dUA==;EndpointSuffix=core.windows.net
-
-allowed_file_type=doc,docx,xls,xlsx,ppt,pptx,jpg,png,bmp,csv,pdf,txt,dat,wps,wpt,et,eet,p12
\ No newline at end of file
diff --git a/product-server-project-web/src/main/resources/application-ess.properties b/product-server-project-web/src/main/resources/application-ess.properties
deleted file mode 100644
index 43c4e22..0000000
--- a/product-server-project-web/src/main/resources/application-ess.properties
+++ /dev/null
@@ -1,198 +0,0 @@
-#======================================#
-#=============\u7CFB\u7EDF\u53C2\u6570 \u76F8\u5173\u914D\u7F6E==============#
-#======================================#
-
-#\u4E0A\u4F20\u6587\u4EF6\u8DEF\u5F84,\u7EDD\u5BF9
-#\u542F\u7528\u65E5\u5FD7\u6253\u5370
-logger.isEnable=true
-#\u65E5\u5FD7\u6253\u5370\u6307\u5B9A\u63A5\u53E3\uFF0C*\u8868\u793A\u5168\u90E8\u6253\u5370\uFF0C\u7A7A\u8868\u793A\u5168\u90E8\u4E0D\u6253\u5370\uFF0C\u6307\u5B9A\u591A\u4E2A\u63A5\u53E3\u9017\u53F7\u5206\u9694
-logger.print.api=*
-#\u662F\u5426\u7ACB\u5373\u6253\u5370\uFF0Cfalse\uFF1A\u63A5\u53E3\u6700\u540E\u4E00\u6B21\u6027\u6253\u5370 true\uFF1A\u8C03\u7528\u5373\u6253\u5370
-logger.print.isAtOnce=false
-#\u662F\u5426\u542F\u7528\u767B\u5F55\u63A5\u53E3\u7528\u6237\u540D\u5BC6\u7801\u52A0\u5BC6
-login.ecc.isEnable=true
-#\u662F\u5426\u542F\u7528\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1
-signature.isEnable=true
-#\u5728\u542F\u7528\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1\u65F6\uFF0C\u6392\u9664\u6307\u5B9A\u63A5\u53E3\u65E0\u9700\u7B7E\u540D\u8BA4\u8BC1
-signature.exclude.path=/api/rsa/getKey/v1,/api/token/refresh/v1
-#\u7B7E\u540D\u8BA4\u8BC1Key
-signature.key=299cb5bb4c9040a29c58304c25001d72
-#\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1\u6709\u6548\u671F\uFF0C\u5355\u4F4D\u79D2,0\u8868\u793A\u4E0D\u9A8C\u8BC1
-signature.expire=0
-
-#token\u8FC7\u671F\u65F6\u95F4\uFF0C\u5C0F\u65F6 6\u5206\u949F
-token.expiration=0.1
-#\u5FD8\u8BB0\u5BC6\u7801\u90AE\u4EF6\u4E2DToken\u7684\u8FC7\u671F\u65F6\u95F4
-mail.token.expiration=1
-#\u63A5\u53E3token\u8FC7\u671F\uFF0C\u5237\u65B0token\u7684\u63A5\u53E3\u4F7F\u7528\u7684Token\u8FC7\u671F\u65F6\u95F4
-refresh.token.expiration=1
-#token\u9A8C\u8BC1\u3001\u767B\u5F55\u9A8C\u8BC1\uFF0C\u6392\u9664URL,\u9017\u53F7\u5206\u9694
-token.exclude.path=/api/token/refresh/v1,/login,/login/v1,/api/applyinfo/get-apply-info,/api/personalcenter/send-updatePwdEmail/v1,/api/language/login-language/v1,/api/lable_internationalization/list_lable_internation/v1,/api/lable_internationalization/list-label-internation-web/v1,/api/personalcenter/check-token/v1,/api/rsa/getKey/v1
-#\u662F\u5426\u542F\u7528\u529F\u80FD\u6743\u9650\u9A8C\u8BC1
-url.valid.isEnable=false
-#\u4E0D\u9700\u8981\u6743\u9650\u9A8C\u8BC1\u63A5\u53E3\u5730\u5740,\u4E0D\u80FD\u914D/v1\u3001v2\u7B49
-url.valid.pass=/api/prompt/business/findPrompt,/api/dictionary/list-dictionary-byname,/logout,/api/functions/onload-button,/api/language/login-language/v1,/api/fileManager/get-file-info,/api/language/list-international-fields,/api/user/language/update-language,/api/staff-manager/upload_staff_avatar
-#\u662F\u5426\u6253\u5370\u9519\u8BEF\u4FE1\u606F
-info.print=true
-error.info.print=true
-#\u662F\u5426\u6253\u5370\u9519\u8BEF\u5806\u690E\u4FE1\u606F
-error.stack.trace.print=true
-#\u662F\u5426\u4FDD\u5B58\u9519\u8BEF\u4FE1\u606F
-error.info.save=true
-
-#\u662F\u5426\u542F\u7528SQL\u76D1\u63A7,\u9ED8\u8BA4\u4E0D\u542F\u7528,\u662F\u5426\u5728\u540E\u53F0\u6253\u5370sql\u8BED\u53E5
-isMonitorSQL = false
-#\u67E5\u8BE2\u65F6\u95F4\u8D85\u8FC7\u591A\u5C11\u79D2\u7684sql\u8BED\u53E5\u8BB0\u5F55\u5230\u5206\u6790\u6570\u636E\u5E93\u4E2D\uFF0C\u65F6\u95F4\u5355\u4F4D\uFF1A\u79D2
-monitorSQLTime = 3
-#\u662F\u5426\u542F\u7528\u7CFB\u7EDF\u54CD\u5E94
-isMonitorRequest = false
-#\u7CFB\u7EDF\u54CD\u5E94\u65F6\u95F4\u8D85\u8FC7\u591A\u5C11\u79D2\uFF0C\u8BB0\u5F55\u5230\u76D1\u63A7\u6570\u636E\u5E93\u4E2D
-monitorRequestTime = 4
-#\u56FE\u5F62\u9A8C\u8BC1\u7801\u751F\u6210\u7684\u56FE\u7247\u8DEF\u5F84
-upload.file.temp.path=./lx_file/aptcha
-#\u4E0B\u62C9\u9009\u62E9\u663E\u793A\u6761\u6570
-prompt.show.rows=20
-#\u662F\u5426\u4FDD\u5B58\u501F\u8BEF\u4FE1\u606F
-error.message.save=true
-#\u4E0A\u4F20\u6587\u4EF6\u5B58\u653E\u76EE\u5F55
-upload.file.path=./lx_file/upload
-#license鏂囦欢璺緞
-license.path=./
-#\u4E0A\u4F20\u6587\u4EF6\u5B58\u653E\u4E34\u65F6\u76EE\u5F55
-upload.file.temp.path=./lx_file/temp
-#\u4E0A\u4F20\u5355\u4E2A\u6587\u4EF6\u5927\u5C0F(\u9ED8\u8BA41M)
-upload.file.max.size=1048576
-#\u4E0A\u4F20\u603B\u6587\u4EF6\u5927\u5C0F(\u9ED8\u8BA410M)
-upload.max.size=10485760
-#\u7CFB\u7EDF\u7F13\u5B58\u5237\u65B0\u9891\u7387\uFF0C\u6BEB\u79D2
-cache.refresh.rate=2000
-#======================================#
-#==============\u9ED8\u8BA4\u6570\u636E\u6E90\u8BBE\u7F6E ==============#
-#======================================#
-#\u6570\u636E\u5E93\u8FDE\u63A5\u6C60\u7C7B\u578B druid\u3001c3p0
-data.source.pool.type=druid
-data.source.name=default
-data.source.type=mysql
-data.source.driver=com.mysql.jdbc.Driver
-
-##################essssss############################
-data.source.url=jdbc:mysql://192.168.0.199:3306/lx_product_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-data.source.user=essdbdebug
-data.source.password=debug1qaz!QAZ^DEBUG
-
-#-------------------------druid\u8FDE\u63A5\u6C60\u7684\u914D\u7F6E\u4FE1\u606F------------------------
-# \u521D\u59CB\u5316\u5927\u5C0F\uFF0C\u6700\u5C0F\uFF0C\u6700\u5927
-druid.datasource.initialSize=5
-#\u6700\u5C0F\u8FDE\u63A5\u6C60\u6570\u91CF
-druid.datasource.minIdle=50
-#\u6700\u5927\u8FDE\u63A5\u6C60\u6570\u91CF
-druid.datasource.maxActive=200
-# \u914D\u7F6E\u83B7\u53D6\u8FDE\u63A5\u7B49\u5F85\u8D85\u65F6\u7684\u65F6\u95F4 1\u5206\u949F
-druid.datasource.maxWait=60000
-# \u914D\u7F6E\u95F4\u9694\u591A\u4E45\u624D\u8FDB\u884C\u4E00\u6B21\u68C0\u6D4B\uFF0C\u68C0\u6D4B\u9700\u8981\u5173\u95ED\u7684\u7A7A\u95F2\u8FDE\u63A5\uFF0C\u5355\u4F4D\u662F\u6BEB\u79D2 10\u5206\u949F\u5C0F\u65F6\u68C0\u67E5
-druid.datasource.timeBetweenEvictionRunsMillis=600000
-# \u914D\u7F6E\u4E00\u4E2A\u8FDE\u63A5\u5728\u6C60\u4E2D\u6700\u5C0F\u751F\u5B58\u7684\u65F6\u95F4\uFF0C\u5355\u4F4D\u662F\u6BEB\u79D2 \u8FDE\u63A5\u4FDD\u6301\u7A7A\u95F2\u800C\u4E0D\u88AB\u9A71\u9010\u7684\u6700\u5C0F\u65F6\u95F4
-druid.datasource.minEvictableIdleTimeMillis=1800000
-#\u7528\u6765\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\u7684sql\uFF0C\u8981\u6C42\u662F\u4E00\u4E2A\u67E5\u8BE2\u8BED\u53E5
-druid.datasource.validationQuery=SELECT 1
-#\u5EFA\u8BAE\u914D\u7F6E\u4E3Atrue\uFF0C\u4E0D\u5F71\u54CD\u6027\u80FD\uFF0C\u5E76\u4E14\u4FDD\u8BC1\u5B89\u5168\u6027\u3002\u7533\u8BF7\u8FDE\u63A5\u7684\u65F6\u5019\u68C0\u6D4B\uFF0C\u5982\u679C\u7A7A\u95F2\u65F6\u95F4\u5927\u4E8EtimeBetweenEvictionRunsMillis\uFF0C\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\u3002
-druid.datasource.testWhileIdle=true
-#\u7533\u8BF7\u8FDE\u63A5\u65F6\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\uFF0C\u505A\u4E86\u8FD9\u4E2A\u914D\u7F6E\u4F1A\u964D\u4F4E\u6027\u80FD\u3002
-druid.datasource.testOnBorrow=true
-#\u5F52\u8FD8\u8FDE\u63A5\u65F6\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\uFF0C\u505A\u4E86\u8FD9\u4E2A\u914D\u7F6E\u4F1A\u964D\u4F4E\u6027\u80FD\u3002
-druid.datasource.testOnReturn=false
-#\uFF0C\u589E\u5F3AtimeBetweenEvictionRunsMillis\u7684\u5468\u671F\u6027\u8FDE\u63A5\u68C0\u67E5\uFF0CminIdle\u5185\u7684\u7A7A\u95F2\u8FDE\u63A5\uFF0C\u6BCF\u6B21\u68C0\u67E5\u5F3A\u5236\u9A8C\u8BC1\u8FDE\u63A5\u6709\u6548\u6027
-druid.datasource.keepAlive=true
-#\u8FDE\u63A5\u6CC4\u9732\u68C0\u67E5\uFF0C\u6253\u5F00removeAbandoned\u529F\u80FD , \u8FDE\u63A5\u4ECE\u8FDE\u63A5\u6C60\u501F\u51FA\u540E\uFF0C\u957F\u65F6\u95F4\u4E0D\u5F52\u8FD8\uFF0C\u5C06\u89E6\u53D1\u5F3A\u5236\u56DE\u8FDE\u63A5\u3002
-#\u56DE\u6536\u5468\u671F\u968FtimeBetweenEvictionRunsMillis\u8FDB\u884C\uFF0C\u5982\u679C\u8FDE\u63A5\u4E3A\u4ECE\u8FDE\u63A5\u6C60\u501F\u51FA\u72B6\u6001\uFF0C\u5E76\u4E14\u672A\u6267\u884C\u4EFB\u4F55sql\uFF0C\u5E76\u4E14\u4ECE\u501F\u51FA\u65F6\u95F4\u8D77\u5DF2\u8D85\u8FC7removeAbandonedTimeout\u65F6\u95F4\uFF0C
-#\u5219\u5F3A\u5236\u5F52\u8FD8\u8FDE\u63A5\u5230\u8FDE\u63A5\u6C60\u4E2D\u3002
-druid.datasource.removeAbandoned=true
-#\u8FDE\u63A5\u56DE\u6536\u7684\u8D85\u65F6\u65F6\u95F4\uFF1B\u5355\u4F4D\u4E3A\u6BEB\u79D2,5\u5206\u949F
-druid.datasource.removeAbandonedTimeout=300000
-# \u6253\u5F00PSCache\uFF0C\u5E76\u4E14\u6307\u5B9A\u6BCF\u4E2A\u8FDE\u63A5\u4E0APSCache\u7684\u5927\u5C0F
-druid.datasource.poolPreparedStatements=true
-#\u662F\u5426\u7F13\u5B58preparedStatement\uFF0C\u4E5F\u5C31\u662FPSCache\u3002PSCache\u5BF9\u652F\u6301\u6E38\u6807\u7684\u6570\u636E\u5E93\u6027\u80FD\u63D0\u5347\u5DE8\u5927\uFF0C\u6BD4\u5982\u8BF4oracle\u3002\u5728mysql\u4E0B\u5EFA\u8BAE\u5173\u95ED\u3002
-druid.datasource.maxPoolPreparedStatementPerConnectionSize=100
-# \u914D\u7F6E\u76D1\u63A7\u7EDF\u8BA1\u62E6\u622A\u7684filters\uFF0C\u53BB\u6389\u540E\u76D1\u63A7\u754C\u9762sql\u65E0\u6CD5\u7EDF\u8BA1\uFF0C'wall'\u7528\u4E8E\u9632\u706B\u5899
-druid.datasource.filters=stat,wall,log4j
-# \u901A\u8FC7connectProperties\u5C5E\u6027\u6765\u6253\u5F00mergeSql\u529F\u80FD\uFF1B\u6162SQL\u8BB0\u5F55
-druid.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
-#======================================#
-#========== Server settings ===========#
-#======================================#
-server.servlet.context-path=/lx
-server.port=9998
-#HTTP encoding
-spring.servlet.multipart.enabled=false
-spring.http.encoding.force=true
-spring.http.encoding.charset=UTF-8
-spring.http.encoding.enabled=true
-server.tomcat.uri-encoding=UTF-8
-#\u8BBE\u7F6Esession\u8D85\u65F6\u65F6\u95F4
-server.servlet.session.timeout=72000
-
-
-
-spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
-
-awsS3.bucketName=mrc-ats
-awsS3.region = ap-southeast-1
-awsS3.accessKey=AKIAUHVHXZNNLAJQZANJ
-awsS3.secretKey=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
-
-#email
-email.serverhost=smtp.exmail.qq.com
-email.serverport=465
-email.username=notification@mrcintl.group
-email.password=D4hrLWLEP3fh9wBg
-email.fromaddress=notification@mrcintl.group
-email.fromname=MRC
-
-#eQuest
-equest.usarname=MRC-user
-equest.password=d4cember4$
-
-#parse_resume
-parse_resume.username=u100220
-parse_resume.password=mrc20190522
-
-#\u6307\u5B9A\u5730\u7406\u4F4D\u7F6E\u7684Path
-assign.geoPath=1,7
-
-# \u53D1\u9001\u90AE\u4EF6\u914D\u7F6E
-spring.mail.host=smtp.qq.com
-spring.mail.port=465
-spring.mail.username=1074825718@qq.com
-spring.mail.password=zihjazyfgsofhbbj
-
-
-#\u521B\u5EFA\u8D26\u53F7\u521D\u59CB\u5BC6\u7801
-initial.pwd=123456
-
-#\u91CD\u7F6E\u5BC6\u7801url
-
-#\u7BA1\u7406\u5458\u8DF3\u8F6C\u5730\u5740
-resetpwd.mrcurl=https://qtest-ess-base-frontend.kaifa000.com/#/reset-password
-#\u666E\u901A\u5458\u5DE5\u8DF3\u8F6C\u5730\u5740
-resetpwd.essurl=https://qtest-ess-base-frontend.kaifa000.com/#/reset-password
-
-#\u7BA1\u7406\u5458\u767B\u5F55\u5730\u5740
-resetpwd.mrclogin_url=https://qtest-ess-base-frontend.kaifa000.com/#/login
-#\u5458\u5DE5\u767B\u5F55\u5730\u5740
-resetpwd.esslogin_url=https://qtest-ess-base-frontend.kaifa000.com/#/login
-
-#SendGrid\u8D26\u6237\u548C\u5BC6\u94A5
-sendGrid.mail.user=no-reply@essencehr.io
-sendGrid.mail.key=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
-
-#mailgun\u7CFB\u7EDF\u90AE\u4EF6\u914D\u7F6E
-mailgun.mail.user=mail.purtato.com
-mailgun.mail.key=8d52b0a748b20c61331587fa9a3fe6fc-cb3791c4-8cf158ef
-
-#\u53BB\u9644\u4EF6\u5BB9\u5668\u7BA1\u7406\uFF0C\u81EA\u52A8\u521B\u5EFA\u5BB9\u5668\u7684\u63A5\u53E3\u5730\u5740,\u7BA1\u7406\u8D26\u53F7\u8FDB\u53BB\u751F\u6210
-upload.url=https://mrcbase.blob.core.windows.net/?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#\u53BB\u9644\u4EF6\u5BB9\u5668\u7BA1\u7406\uFF0C\u81EA\u52A8\u521B\u5EFA\u5BB9\u5668\u7684\u4E0A\u4F20\u7684key\uFF0C\u5728\u7BA1\u7406\u8D26\u53F7\u4E2D\u521B\u5EFA
-upload.key=?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#upload.connection_string=BlobEndpoint=https://mrcbase.blob.core.windows.net/;QueueEndpoint=https://mrcbase.queue.core.windows.net/;FileEndpoint=https://mrcbase.file.core.windows.net/;TableEndpoint=https://mrcbase.table.core.windows.net/;SharedAccessSignature=sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-upload.connection_string=DefaultEndpointsProtocol=https;AccountName=mrcbase;AccountKey=ulFYmOyQUA+8K8M5JUgMs2heohRW1dIkkdLtbl9L1+60AY9ySIbx7uxVrMY5UAdu9fm6qhBaslyBlCgWGS+dUA==;EndpointSuffix=core.windows.net
-
diff --git a/product-server-project-web/src/main/resources/application-local.properties b/product-server-project-web/src/main/resources/application-local.properties
deleted file mode 100644
index 2262890..0000000
--- a/product-server-project-web/src/main/resources/application-local.properties
+++ /dev/null
@@ -1,198 +0,0 @@
-#======================================#
-#=============\u7CFB\u7EDF\u53C2\u6570 \u76F8\u5173\u914D\u7F6E==============#
-#======================================#
-
-#\u4E0A\u4F20\u6587\u4EF6\u8DEF\u5F84,\u7EDD\u5BF9
-#\u542F\u7528\u65E5\u5FD7\u6253\u5370
-logger.isEnable=true
-#\u65E5\u5FD7\u6253\u5370\u6307\u5B9A\u63A5\u53E3\uFF0C*\u8868\u793A\u5168\u90E8\u6253\u5370\uFF0C\u7A7A\u8868\u793A\u5168\u90E8\u4E0D\u6253\u5370\uFF0C\u6307\u5B9A\u591A\u4E2A\u63A5\u53E3\u9017\u53F7\u5206\u9694
-logger.print.api=*
-#\u662F\u5426\u7ACB\u5373\u6253\u5370\uFF0Cfalse\uFF1A\u63A5\u53E3\u6700\u540E\u4E00\u6B21\u6027\u6253\u5370 true\uFF1A\u8C03\u7528\u5373\u6253\u5370
-logger.print.isAtOnce=false
-#\u662F\u5426\u542F\u7528\u767B\u5F55\u63A5\u53E3\u7528\u6237\u540D\u5BC6\u7801\u52A0\u5BC6
-login.ecc.isEnable=true
-#\u662F\u5426\u542F\u7528\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1
-signature.isEnable=true
-#\u5728\u542F\u7528\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1\u65F6\uFF0C\u6392\u9664\u6307\u5B9A\u63A5\u53E3\u65E0\u9700\u7B7E\u540D\u8BA4\u8BC1
-signature.exclude.path=/api/rsa/getKey/v1,/api/token/refresh/v1
-#\u7B7E\u540D\u8BA4\u8BC1Key
-signature.key=299cb5bb4c9040a29c58304c25001d72
-#\u63A5\u53E3\u7B7E\u540D\u8BA4\u8BC1\u6709\u6548\u671F\uFF0C\u5355\u4F4D\u79D2,0\u8868\u793A\u4E0D\u9A8C\u8BC1
-signature.expire=0
-
-#token\u8FC7\u671F\u65F6\u95F4\uFF0C\u5C0F\u65F6 6\u5206\u949F
-token.expiration=0.1
-#\u5FD8\u8BB0\u5BC6\u7801\u90AE\u4EF6\u4E2DToken\u7684\u8FC7\u671F\u65F6\u95F4
-mail.token.expiration=1
-#\u63A5\u53E3token\u8FC7\u671F\uFF0C\u5237\u65B0token\u7684\u63A5\u53E3\u4F7F\u7528\u7684Token\u8FC7\u671F\u65F6\u95F4
-refresh.token.expiration=1
-#token\u9A8C\u8BC1\u3001\u767B\u5F55\u9A8C\u8BC1\uFF0C\u6392\u9664URL,\u9017\u53F7\u5206\u9694
-token.exclude.path=/api/token/refresh/v1,/login,/login/v1,/api/applyinfo/get-apply-info,/api/personalcenter/send-updatePwdEmail/v1,/api/language/login-language/v1,/api/lable_internationalization/list_lable_internation/v1,/api/lable_internationalization/list-label-internation-web/v1,/api/personalcenter/check-token/v1,/api/rsa/getKey/v1
-#\u662F\u5426\u542F\u7528\u529F\u80FD\u6743\u9650\u9A8C\u8BC1
-url.valid.isEnable=false
-#\u4E0D\u9700\u8981\u6743\u9650\u9A8C\u8BC1\u63A5\u53E3\u5730\u5740,\u4E0D\u80FD\u914D/v1\u3001v2\u7B49
-url.valid.pass=/api/prompt/business/findPrompt,/api/dictionary/list-dictionary-byname,/logout,/api/functions/onload-button,/api/language/login-language/v1,/api/fileManager/get-file-info,/api/language/list-international-fields,/api/user/language/update-language,/api/staff-manager/upload_staff_avatar
-#\u662F\u5426\u6253\u5370\u9519\u8BEF\u4FE1\u606F
-info.print=true
-error.info.print=true
-#\u662F\u5426\u6253\u5370\u9519\u8BEF\u5806\u690E\u4FE1\u606F
-error.stack.trace.print=true
-#\u662F\u5426\u4FDD\u5B58\u9519\u8BEF\u4FE1\u606F
-error.info.save=true
-
-#\u662F\u5426\u542F\u7528SQL\u76D1\u63A7,\u9ED8\u8BA4\u4E0D\u542F\u7528,\u662F\u5426\u5728\u540E\u53F0\u6253\u5370sql\u8BED\u53E5
-isMonitorSQL = false
-#\u67E5\u8BE2\u65F6\u95F4\u8D85\u8FC7\u591A\u5C11\u79D2\u7684sql\u8BED\u53E5\u8BB0\u5F55\u5230\u5206\u6790\u6570\u636E\u5E93\u4E2D\uFF0C\u65F6\u95F4\u5355\u4F4D\uFF1A\u79D2
-monitorSQLTime = 3
-#\u662F\u5426\u542F\u7528\u7CFB\u7EDF\u54CD\u5E94
-isMonitorRequest = false
-#\u7CFB\u7EDF\u54CD\u5E94\u65F6\u95F4\u8D85\u8FC7\u591A\u5C11\u79D2\uFF0C\u8BB0\u5F55\u5230\u76D1\u63A7\u6570\u636E\u5E93\u4E2D
-monitorRequestTime = 4
-#\u56FE\u5F62\u9A8C\u8BC1\u7801\u751F\u6210\u7684\u56FE\u7247\u8DEF\u5F84
-upload.file.temp.path=./lx_file/aptcha
-#\u4E0B\u62C9\u9009\u62E9\u663E\u793A\u6761\u6570
-prompt.show.rows=20
-#\u662F\u5426\u4FDD\u5B58\u501F\u8BEF\u4FE1\u606F
-error.message.save=true
-#\u4E0A\u4F20\u6587\u4EF6\u5B58\u653E\u76EE\u5F55
-upload.file.path=./lx_file/upload
-#license鏂囦欢璺緞
-license.path=./
-#\u4E0A\u4F20\u6587\u4EF6\u5B58\u653E\u4E34\u65F6\u76EE\u5F55
-upload.file.temp.path=./lx_file/temp
-#\u4E0A\u4F20\u5355\u4E2A\u6587\u4EF6\u5927\u5C0F(\u9ED8\u8BA41M)
-upload.file.max.size=1048576
-#\u4E0A\u4F20\u603B\u6587\u4EF6\u5927\u5C0F(\u9ED8\u8BA410M)
-upload.max.size=10485760
-#\u7CFB\u7EDF\u7F13\u5B58\u5237\u65B0\u9891\u7387\uFF0C\u6BEB\u79D2
-cache.refresh.rate=2000
-#======================================#
-#==============\u9ED8\u8BA4\u6570\u636E\u6E90\u8BBE\u7F6E ==============#
-#======================================#
-#\u6570\u636E\u5E93\u8FDE\u63A5\u6C60\u7C7B\u578B druid\u3001c3p0
-data.source.pool.type=druid
-data.source.name=default
-data.source.type=mysql
-data.source.driver=com.mysql.jdbc.Driver
-
-##################local###############################
-data.source.url=jdbc:mysql://192.168.0.199:3306/lx_product_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-data.source.user=root
-data.source.password=root123
-
-#-------------------------druid\u8FDE\u63A5\u6C60\u7684\u914D\u7F6E\u4FE1\u606F------------------------
-# \u521D\u59CB\u5316\u5927\u5C0F\uFF0C\u6700\u5C0F\uFF0C\u6700\u5927
-druid.datasource.initialSize=5
-#\u6700\u5C0F\u8FDE\u63A5\u6C60\u6570\u91CF
-druid.datasource.minIdle=50
-#\u6700\u5927\u8FDE\u63A5\u6C60\u6570\u91CF
-druid.datasource.maxActive=200
-# \u914D\u7F6E\u83B7\u53D6\u8FDE\u63A5\u7B49\u5F85\u8D85\u65F6\u7684\u65F6\u95F4 1\u5206\u949F
-druid.datasource.maxWait=60000
-# \u914D\u7F6E\u95F4\u9694\u591A\u4E45\u624D\u8FDB\u884C\u4E00\u6B21\u68C0\u6D4B\uFF0C\u68C0\u6D4B\u9700\u8981\u5173\u95ED\u7684\u7A7A\u95F2\u8FDE\u63A5\uFF0C\u5355\u4F4D\u662F\u6BEB\u79D2 10\u5206\u949F\u5C0F\u65F6\u68C0\u67E5
-druid.datasource.timeBetweenEvictionRunsMillis=600000
-# \u914D\u7F6E\u4E00\u4E2A\u8FDE\u63A5\u5728\u6C60\u4E2D\u6700\u5C0F\u751F\u5B58\u7684\u65F6\u95F4\uFF0C\u5355\u4F4D\u662F\u6BEB\u79D2 \u8FDE\u63A5\u4FDD\u6301\u7A7A\u95F2\u800C\u4E0D\u88AB\u9A71\u9010\u7684\u6700\u5C0F\u65F6\u95F4
-druid.datasource.minEvictableIdleTimeMillis=1800000
-#\u7528\u6765\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\u7684sql\uFF0C\u8981\u6C42\u662F\u4E00\u4E2A\u67E5\u8BE2\u8BED\u53E5
-druid.datasource.validationQuery=SELECT 1
-#\u5EFA\u8BAE\u914D\u7F6E\u4E3Atrue\uFF0C\u4E0D\u5F71\u54CD\u6027\u80FD\uFF0C\u5E76\u4E14\u4FDD\u8BC1\u5B89\u5168\u6027\u3002\u7533\u8BF7\u8FDE\u63A5\u7684\u65F6\u5019\u68C0\u6D4B\uFF0C\u5982\u679C\u7A7A\u95F2\u65F6\u95F4\u5927\u4E8EtimeBetweenEvictionRunsMillis\uFF0C\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\u3002
-druid.datasource.testWhileIdle=true
-#\u7533\u8BF7\u8FDE\u63A5\u65F6\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\uFF0C\u505A\u4E86\u8FD9\u4E2A\u914D\u7F6E\u4F1A\u964D\u4F4E\u6027\u80FD\u3002
-druid.datasource.testOnBorrow=true
-#\u5F52\u8FD8\u8FDE\u63A5\u65F6\u6267\u884CvalidationQuery\u68C0\u6D4B\u8FDE\u63A5\u662F\u5426\u6709\u6548\uFF0C\u505A\u4E86\u8FD9\u4E2A\u914D\u7F6E\u4F1A\u964D\u4F4E\u6027\u80FD\u3002
-druid.datasource.testOnReturn=false
-#\uFF0C\u589E\u5F3AtimeBetweenEvictionRunsMillis\u7684\u5468\u671F\u6027\u8FDE\u63A5\u68C0\u67E5\uFF0CminIdle\u5185\u7684\u7A7A\u95F2\u8FDE\u63A5\uFF0C\u6BCF\u6B21\u68C0\u67E5\u5F3A\u5236\u9A8C\u8BC1\u8FDE\u63A5\u6709\u6548\u6027
-druid.datasource.keepAlive=true
-#\u8FDE\u63A5\u6CC4\u9732\u68C0\u67E5\uFF0C\u6253\u5F00removeAbandoned\u529F\u80FD , \u8FDE\u63A5\u4ECE\u8FDE\u63A5\u6C60\u501F\u51FA\u540E\uFF0C\u957F\u65F6\u95F4\u4E0D\u5F52\u8FD8\uFF0C\u5C06\u89E6\u53D1\u5F3A\u5236\u56DE\u8FDE\u63A5\u3002
-#\u56DE\u6536\u5468\u671F\u968FtimeBetweenEvictionRunsMillis\u8FDB\u884C\uFF0C\u5982\u679C\u8FDE\u63A5\u4E3A\u4ECE\u8FDE\u63A5\u6C60\u501F\u51FA\u72B6\u6001\uFF0C\u5E76\u4E14\u672A\u6267\u884C\u4EFB\u4F55sql\uFF0C\u5E76\u4E14\u4ECE\u501F\u51FA\u65F6\u95F4\u8D77\u5DF2\u8D85\u8FC7removeAbandonedTimeout\u65F6\u95F4\uFF0C
-#\u5219\u5F3A\u5236\u5F52\u8FD8\u8FDE\u63A5\u5230\u8FDE\u63A5\u6C60\u4E2D\u3002
-druid.datasource.removeAbandoned=true
-#\u8FDE\u63A5\u56DE\u6536\u7684\u8D85\u65F6\u65F6\u95F4\uFF1B\u5355\u4F4D\u4E3A\u6BEB\u79D2,5\u5206\u949F
-druid.datasource.removeAbandonedTimeout=300000
-# \u6253\u5F00PSCache\uFF0C\u5E76\u4E14\u6307\u5B9A\u6BCF\u4E2A\u8FDE\u63A5\u4E0APSCache\u7684\u5927\u5C0F
-druid.datasource.poolPreparedStatements=true
-#\u662F\u5426\u7F13\u5B58preparedStatement\uFF0C\u4E5F\u5C31\u662FPSCache\u3002PSCache\u5BF9\u652F\u6301\u6E38\u6807\u7684\u6570\u636E\u5E93\u6027\u80FD\u63D0\u5347\u5DE8\u5927\uFF0C\u6BD4\u5982\u8BF4oracle\u3002\u5728mysql\u4E0B\u5EFA\u8BAE\u5173\u95ED\u3002
-druid.datasource.maxPoolPreparedStatementPerConnectionSize=100
-# \u914D\u7F6E\u76D1\u63A7\u7EDF\u8BA1\u62E6\u622A\u7684filters\uFF0C\u53BB\u6389\u540E\u76D1\u63A7\u754C\u9762sql\u65E0\u6CD5\u7EDF\u8BA1\uFF0C'wall'\u7528\u4E8E\u9632\u706B\u5899
-druid.datasource.filters=stat,wall,log4j
-# \u901A\u8FC7connectProperties\u5C5E\u6027\u6765\u6253\u5F00mergeSql\u529F\u80FD\uFF1B\u6162SQL\u8BB0\u5F55
-druid.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
-#======================================#
-#========== Server settings ===========#
-#======================================#
-server.servlet.context-path=/lx
-server.port=9998
-#HTTP encoding
-spring.servlet.multipart.enabled=false
-spring.http.encoding.force=true
-spring.http.encoding.charset=UTF-8
-spring.http.encoding.enabled=true
-server.tomcat.uri-encoding=UTF-8
-#\u8BBE\u7F6Esession\u8D85\u65F6\u65F6\u95F4
-server.servlet.session.timeout=72000
-
-
-
-spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
-
-awsS3.bucketName=mrc-ats
-awsS3.region = ap-southeast-1
-awsS3.accessKey=AKIAUHVHXZNNLAJQZANJ
-awsS3.secretKey=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
-
-#email
-email.serverhost=smtp.exmail.qq.com
-email.serverport=465
-email.username=notification@mrcintl.group
-email.password=D4hrLWLEP3fh9wBg
-email.fromaddress=notification@mrcintl.group
-email.fromname=MRC
-
-#eQuest
-equest.usarname=MRC-user
-equest.password=d4cember4$
-
-#parse_resume
-parse_resume.username=u100220
-parse_resume.password=mrc20190522
-
-#\u6307\u5B9A\u5730\u7406\u4F4D\u7F6E\u7684Path
-assign.geoPath=1,7
-
-# \u53D1\u9001\u90AE\u4EF6\u914D\u7F6E
-spring.mail.host=smtp.qq.com
-spring.mail.port=465
-spring.mail.username=1074825718@qq.com
-spring.mail.password=zihjazyfgsofhbbj
-
-
-#\u521B\u5EFA\u8D26\u53F7\u521D\u59CB\u5BC6\u7801
-initial.pwd=123456
-
-#\u91CD\u7F6E\u5BC6\u7801url
-
-#\u7BA1\u7406\u5458\u8DF3\u8F6C\u5730\u5740
-resetpwd.mrcurl=http://192.168.0.200:3000/#/reset-password
-#\u666E\u901A\u5458\u5DE5\u8DF3\u8F6C\u5730\u5740
-resetpwd.essurl=http://192.168.0.200:3000/#/reset-password
-
-#\u7BA1\u7406\u5458\u767B\u5F55\u5730\u5740
-resetpwd.mrclogin_url=http://192.168.0.200:3000/#/login
-#\u5458\u5DE5\u767B\u5F55\u5730\u5740
-resetpwd.esslogin_url=http://192.168.0.200:3000/#/login
-
-#SendGrid\u8D26\u6237\u548C\u5BC6\u94A5
-sendGrid.mail.user=no-reply@essencehr.io
-sendGrid.mail.key=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
-
-#mailgun\u7CFB\u7EDF\u90AE\u4EF6\u914D\u7F6E
-mailgun.mail.user=mail.purtato.com
-mailgun.mail.key=8d52b0a748b20c61331587fa9a3fe6fc-cb3791c4-8cf158ef
-
-#\u53BB\u9644\u4EF6\u5BB9\u5668\u7BA1\u7406\uFF0C\u81EA\u52A8\u521B\u5EFA\u5BB9\u5668\u7684\u63A5\u53E3\u5730\u5740,\u7BA1\u7406\u8D26\u53F7\u8FDB\u53BB\u751F\u6210
-upload.url=https://mrcbase.blob.core.windows.net/?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#\u53BB\u9644\u4EF6\u5BB9\u5668\u7BA1\u7406\uFF0C\u81EA\u52A8\u521B\u5EFA\u5BB9\u5668\u7684\u4E0A\u4F20\u7684key\uFF0C\u5728\u7BA1\u7406\u8D26\u53F7\u4E2D\u521B\u5EFA
-upload.key=?sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-#upload.connection_string=BlobEndpoint=https://mrcbase.blob.core.windows.net/;QueueEndpoint=https://mrcbase.queue.core.windows.net/;FileEndpoint=https://mrcbase.file.core.windows.net/;TableEndpoint=https://mrcbase.table.core.windows.net/;SharedAccessSignature=sv=2019-12-12&ss=bfqt&srt=sco&sp=rwdlacupx&se=2026-09-01T15:26:10Z&st=2020-10-17T07:26:10Z&spr=https,http&sig=S8%2BKqeGPYfWHLUG5E2N99lY1MG4noWoTsWqp%2FUHBji0%3D
-upload.connection_string=DefaultEndpointsProtocol=https;AccountName=mrcbase;AccountKey=ulFYmOyQUA+8K8M5JUgMs2heohRW1dIkkdLtbl9L1+60AY9ySIbx7uxVrMY5UAdu9fm6qhBaslyBlCgWGS+dUA==;EndpointSuffix=core.windows.net
-
diff --git a/product-server-project-web/src/main/resources/application.properties b/product-server-project-web/src/main/resources/application.properties
deleted file mode 100644
index f41ab57..0000000
--- a/product-server-project-web/src/main/resources/application.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-# dev base prod ess local
-spring.profiles.active=dev
-
-# *********server log start **************
-server.tomcat.access-log-pattern=%h %D %m %l %u %t "%r" %s %b
-server.tomcat.background-processor-delay=-1
-# *********server log end **************
-mybatis.mapper-locations=lx-server-mq/com/mrc/base/mq/mapper/*.xml
diff --git a/product-server-project-web/src/main/resources/banner.txt b/product-server-project-web/src/main/resources/banner.txt
deleted file mode 100644
index 34c3708..0000000
--- a/product-server-project-web/src/main/resources/banner.txt
+++ /dev/null
@@ -1 +0,0 @@
-******************LX SERVER Starting***********************
diff --git a/product-server-project-web/src/main/resources/cache-base.properties b/product-server-project-web/src/main/resources/cache-base.properties
deleted file mode 100644
index 488ef64..0000000
--- a/product-server-project-web/src/main/resources/cache-base.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#Redis\u670D\u52A1\u5668\u5730\u5740
-spring.redis.host=183.61.0.54
-spring.redis.port=6380
-spring.redis.password=BASE20201214base20201214Base
-spring.redis.database=2
-
-
-#-------------------------------------------------
-# \u8FDE\u63A5\u6C60\u6700\u5927\u8FDE\u63A5\u6570\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-active=200
-# \u8FDE\u63A5\u6C60\u6700\u5927\u963B\u585E\u7B49\u5F85\u65F6\u95F4\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-wait=10000
-# \u8FDE\u63A5\u6C60\u4E2D\u7684\u6700\u5927\u7A7A\u95F2\u8FDE\u63A5
-spring.redis.pool.max-idle=100
-# \u8FDE\u63A5\u8D85\u65F6\u65F6\u95F4\uFF08\u6BEB\u79D2\uFF09
-spring.redis.timeout=60000
diff --git a/product-server-project-web/src/main/resources/cache-dev.properties b/product-server-project-web/src/main/resources/cache-dev.properties
deleted file mode 100644
index 5e0e70a..0000000
--- a/product-server-project-web/src/main/resources/cache-dev.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Redis\u670D\u52A1\u5668\u5730\u5740 ----------localhost--------------
-#spring.redis.host=127.0.0.1
-spring.redis.host=192.168.0.200
-spring.redis.port=6379
-spring.redis.password=
-spring.redis.database=12
-
-#-------------------------------------------------
-# \u8FDE\u63A5\u6C60\u6700\u5927\u8FDE\u63A5\u6570\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-active=200
-# \u8FDE\u63A5\u6C60\u6700\u5927\u963B\u585E\u7B49\u5F85\u65F6\u95F4\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-wait=10000
-# \u8FDE\u63A5\u6C60\u4E2D\u7684\u6700\u5927\u7A7A\u95F2\u8FDE\u63A5
-spring.redis.pool.max-idle=100
-# \u8FDE\u63A5\u8D85\u65F6\u65F6\u95F4\uFF08\u6BEB\u79D2\uFF09
-spring.redis.timeout=60000
diff --git a/product-server-project-web/src/main/resources/cache-ess.properties b/product-server-project-web/src/main/resources/cache-ess.properties
deleted file mode 100644
index fe43bbf..0000000
--- a/product-server-project-web/src/main/resources/cache-ess.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-# Redis\u670D\u52A1\u5668\u5730\u5740 ----------localhost--------------
-
-#-----------------ess----------------------------
-spring.redis.host=183.61.0.54
-spring.redis.port=6379
-spring.redis.password=ESS20201214ess20201214ESS
-spring.redis.database=10
-
-#-------------------------------------------------
-# \u8FDE\u63A5\u6C60\u6700\u5927\u8FDE\u63A5\u6570\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-active=200
-# \u8FDE\u63A5\u6C60\u6700\u5927\u963B\u585E\u7B49\u5F85\u65F6\u95F4\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-wait=10000
-# \u8FDE\u63A5\u6C60\u4E2D\u7684\u6700\u5927\u7A7A\u95F2\u8FDE\u63A5
-spring.redis.pool.max-idle=100
-# \u8FDE\u63A5\u8D85\u65F6\u65F6\u95F4\uFF08\u6BEB\u79D2\uFF09
-spring.redis.timeout=60000
diff --git a/product-server-project-web/src/main/resources/cache-local.properties b/product-server-project-web/src/main/resources/cache-local.properties
deleted file mode 100644
index af14f30..0000000
--- a/product-server-project-web/src/main/resources/cache-local.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-# Redis\u670D\u52A1\u5668\u5730\u5740 ----------localhost--------------
-spring.redis.host=127.0.0.1
-spring.redis.port=6379
-spring.redis.password=
-spring.redis.database=0
-
-#-------------------------------------------------
-# \u8FDE\u63A5\u6C60\u6700\u5927\u8FDE\u63A5\u6570\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-active=200
-# \u8FDE\u63A5\u6C60\u6700\u5927\u963B\u585E\u7B49\u5F85\u65F6\u95F4\uFF08\u4F7F\u7528\u8D1F\u503C\u8868\u793A\u6CA1\u6709\u9650\u5236\uFF09
-spring.redis.pool.max-wait=10000
-# \u8FDE\u63A5\u6C60\u4E2D\u7684\u6700\u5927\u7A7A\u95F2\u8FDE\u63A5
-spring.redis.pool.max-idle=100
-# \u8FDE\u63A5\u8D85\u65F6\u65F6\u95F4\uFF08\u6BEB\u79D2\uFF09
-spring.redis.timeout=60000
diff --git a/product-server-project-web/src/main/resources/file.properties b/product-server-project-web/src/main/resources/file.properties
deleted file mode 100644
index 1c1477c..0000000
--- a/product-server-project-web/src/main/resources/file.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-# 鏄惁闇�瑕佷笂浼犲埌鏂囦欢鏈嶅姟鍣�
-upload.server=true
-# 鏄惁闇�瑕佹枃浠跺姞瀵�
-file.encrypt=true
-
-# 鏂囦欢鏈嶅姟鍣ㄤ俊鎭紝鑻ユ槸涓婁紶鍒版湰鍦帮紝鍒欎负绌哄嵆鍙�
-ftp.server.ip=192.168.0.199
-ftp.server.port=2121
-ftp.server.username=admin
-ftp.server.password=admin
-ftp.server.encode=utf-8
-
-# 鍦ㄧ嚎棰勮杞崲鏈嶅姟
-open.office.home=D:/worksoft/openoffice/home
-open.office.port.info=8100,8101,8102,8103,8104
-# 鍗曚釜浠诲姟鎵ц瓒呮椂鏃堕棿锛屽崟浣嶏細姣
-open.office.task.timeout=300000
-# 鍗曚釜浠诲姟鎺掗槦瓒呮椂鏃堕棿锛屽崟浣嶏細姣
-open.office.queue.timeout=86400000
-
-# 鏈湴涓存椂璺緞
-temp.dir=D:/worksoft/IDEA/workspace/file
-# 鏈湴瀛樻斁璺緞
-local.dir=D:/test/lx-server/file
\ No newline at end of file
diff --git a/product-server-project-web/src/main/resources/jdbc.properties b/product-server-project-web/src/main/resources/jdbc.properties
deleted file mode 100644
index bef7230..0000000
--- a/product-server-project-web/src/main/resources/jdbc.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-#======================================#
-#=============JDBC\u53C2\u6570 \u76F8\u5173\u914D\u7F6E==============#
-#======================================#
-data.source.type=mysql
-data.source.driver=com.mysql.jdbc.Driver
-data.source.url=jdbc:mysql://192.168.0.199:3306/lx_product_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-data.source.user=root
-data.source.password=root123
\ No newline at end of file
diff --git a/product-server-project-web/src/main/resources/logback-spring.xml b/product-server-project-web/src/main/resources/logback-spring.xml
deleted file mode 100644
index ba3d60e..0000000
--- a/product-server-project-web/src/main/resources/logback-spring.xml
+++ /dev/null
@@ -1,152 +0,0 @@
-<configuration>
- <!-- <property name="LOG_HOME" value="/opt/mrc_ats/logs/backend" /> -->
- <property name="LOG_HOME" value="./logs/backend" />
- <!-- <property name="LOG_HOME" value="/Users/fuller/Desktop/logs/backend" /> -->
- <timestamp key="byDate" datePattern="yyyy-MM-dd"/>
- <!--鏍煎紡鍖栬緭鍑猴細%d琛ㄧず鏃ユ湡锛�%thread琛ㄧず绾跨▼鍚嶏紝%-5level锛氱骇鍒粠宸︽樉绀�5涓瓧绗﹀搴�%msg锛氭棩蹇楁秷鎭紝%n鏄崲琛岀-->
- <property name="MESSAGE_FILE_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}.%M - %msg%n" />
- <!-- 鏃ュ織鏂囦欢淇濈暀鏃堕暱 -->
- <property name="maxhistory" value="60"/>
- <!-- 鏃ュ織鏂囦欢鍒嗗壊澶у皬 -->
- <property name="logSize" value="500MB"/>
-
- <!-- 鎺у埗鍙� -->
- <appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender">
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>DEBUG</level>
- </filter>
- <layout class="ch.qos.logback.classic.PatternLayout">
- <Pattern>${MESSAGE_FILE_PATTERN}</Pattern>
- </layout>
- </appender>
-
- <!-- error绾у埆鏃ュ織鏂囦欢 -->
- <appender name="errorAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>ERROR</level>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/error/ats_backend_error_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- info绾у埆鏃ュ織鏂囦欢 -->
- <appender name="infoAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/info/ats_backend_info_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- debug绾у埆鏃ュ織鏂囦欢 -->
- <appender name="debugAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>DEBUG</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/debug/ats_backend_debug_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
-
-
- <!-- 鎵撳嵃鐩戞帶鏃ュ織鏂囦欢
- <appender name="file鈥攎onitor" class="ch.qos.logback.core.FileAppender">
- <file>${LOG_HOME}/ats_backend_monitor.log</file>
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <encoder>
- <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%logger{50}.%M] - %msg%n</pattern>
- </encoder>
- </appender>
- -->
-
- <!--
- <logger name="monitor" additivity="false">
- <appender-ref ref="file鈥攎onitor"/>
- </logger>
- -->
-
- <!--db log configure-->
- <logger name="com.apache.ibatis" level="INFO"/>
- <logger name="java.sql.Connection" level="INFO"/>
- <logger name="java.sql.Statement" level="INFO"/>
- <logger name="java.sql.PreparedStatement" level="INFO"/>
- <logger name="org.springframework" level="INFO"/>
-
-
- <!-- 鐢熶骇鐜 -->
- <springProfile name="prod">
- <root level="info">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- </root>
- </springProfile>
-
- <!-- 娴嬭瘯鐜 -->
- <springProfile name="test">
- <root level="debug">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
-
- <!-- 寮�鍙戠幆澧� -->
- <springProfile name="dev">
- <root level="debug">
- <appender-ref ref="consoleAppender"/>
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
- <shutdownHook class="ch.qos.logback.core.hook.DelayingShutdownHook"/>
- <appender name="LogzioLogbackAppender" class="io.logz.logback.LogzioLogbackAppender">
- <token>fJiEvGQzAuzwvDvfzUwDTEastOjHeuro</token>
- <logzioUrl>https://listener.logz.io:8071</logzioUrl>
- <logzioType>BASE-SERVICES-WEB-dev</logzioType>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>INFO</level>
- </filter>
- </appender>
- <!--
- <root level="info">
- <appender-ref ref="LogzioLogbackAppender"/>
- </root>
- -->
-</configuration>
diff --git a/product-server-project-web/src/main/resources/logback-spring.xml_dev b/product-server-project-web/src/main/resources/logback-spring.xml_dev
deleted file mode 100644
index 559cb26..0000000
--- a/product-server-project-web/src/main/resources/logback-spring.xml_dev
+++ /dev/null
@@ -1,152 +0,0 @@
-<configuration>
- <!-- <property name="LOG_HOME" value="/opt/mrc_ats/logs/backend" /> -->
- <property name="LOG_HOME" value="./logs/backend" />
- <!-- <property name="LOG_HOME" value="/Users/fuller/Desktop/logs/backend" /> -->
- <timestamp key="byDate" datePattern="yyyy-MM-dd"/>
- <!--鏍煎紡鍖栬緭鍑猴細%d琛ㄧず鏃ユ湡锛�%thread琛ㄧず绾跨▼鍚嶏紝%-5level锛氱骇鍒粠宸︽樉绀�5涓瓧绗﹀搴�%msg锛氭棩蹇楁秷鎭紝%n鏄崲琛岀-->
- <property name="MESSAGE_FILE_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}.%M - %msg%n" />
- <!-- 鏃ュ織鏂囦欢淇濈暀鏃堕暱 -->
- <property name="maxhistory" value="60"/>
- <!-- 鏃ュ織鏂囦欢鍒嗗壊澶у皬 -->
- <property name="logSize" value="500MB"/>
-
- <!-- 鎺у埗鍙� -->
- <appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender">
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>DEBUG</level>
- </filter>
- <layout class="ch.qos.logback.classic.PatternLayout">
- <Pattern>${MESSAGE_FILE_PATTERN}</Pattern>
- </layout>
- </appender>
-
- <!-- error绾у埆鏃ュ織鏂囦欢 -->
- <appender name="errorAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>ERROR</level>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/error/ats_backend_error_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- info绾у埆鏃ュ織鏂囦欢 -->
- <appender name="infoAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/info/ats_backend_info_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- debug绾у埆鏃ュ織鏂囦欢 -->
- <appender name="debugAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>DEBUG</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/debug/ats_backend_debug_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
-
-
- <!-- 鎵撳嵃鐩戞帶鏃ュ織鏂囦欢
- <appender name="file鈥攎onitor" class="ch.qos.logback.core.FileAppender">
- <file>${LOG_HOME}/ats_backend_monitor.log</file>
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <encoder>
- <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%logger{50}.%M] - %msg%n</pattern>
- </encoder>
- </appender>
- -->
-
- <!--
- <logger name="monitor" additivity="false">
- <appender-ref ref="file鈥攎onitor"/>
- </logger>
- -->
-
- <!--db log configure-->
- <logger name="com.apache.ibatis" level="INFO"/>
- <logger name="java.sql.Connection" level="INFO"/>
- <logger name="java.sql.Statement" level="INFO"/>
- <logger name="java.sql.PreparedStatement" level="INFO"/>
- <logger name="org.springframework" level="INFO"/>
-
-
- <!-- 鐢熶骇鐜 -->
- <springProfile name="prod">
- <root level="info">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- </root>
- </springProfile>
-
- <!-- 娴嬭瘯鐜 -->
- <springProfile name="test">
- <root level="debug">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
-
- <!-- 寮�鍙戠幆澧� -->
- <springProfile name="dev">
- <root level="debug">
- <appender-ref ref="consoleAppender"/>
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
- <shutdownHook class="ch.qos.logback.core.hook.DelayingShutdownHook"/>
- <appender name="LogzioLogbackAppender" class="io.logz.logback.LogzioLogbackAppender">
- <token>fJiEvGQzAuzwvDvfzUwDTEastOjHeuro</token>
- <logzioUrl>https://listener.logz.io:8071</logzioUrl>
- <logzioType>BASE-SERVICES-WEB-dev</logzioType>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>INFO</level>
- </filter>
- </appender>
-
- <root level="info">
- <!-- IMPORTANT: make sure to include this line, otherwise the appender won't be used -->
- <appender-ref ref="LogzioLogbackAppender"/>
- </root>
-</configuration>
diff --git a/product-server-project-web/src/main/resources/logback-spring.xml_ess b/product-server-project-web/src/main/resources/logback-spring.xml_ess
deleted file mode 100644
index 086a33f..0000000
--- a/product-server-project-web/src/main/resources/logback-spring.xml_ess
+++ /dev/null
@@ -1,161 +0,0 @@
-<configuration>
- <!-- <property name="LOG_HOME" value="/opt/mrc_ats/logs/backend" /> -->
- <property name="LOG_HOME" value="./logs/backend" />
- <!-- <property name="LOG_HOME" value="/Users/fuller/Desktop/logs/backend" /> -->
- <timestamp key="byDate" datePattern="yyyy-MM-dd"/>
- <!--鏍煎紡鍖栬緭鍑猴細%d琛ㄧず鏃ユ湡锛�%thread琛ㄧず绾跨▼鍚嶏紝%-5level锛氱骇鍒粠宸︽樉绀�5涓瓧绗﹀搴�%msg锛氭棩蹇楁秷鎭紝%n鏄崲琛岀-->
- <property name="MESSAGE_FILE_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}.%M - %msg%n" />
- <!-- 鏃ュ織鏂囦欢淇濈暀鏃堕暱 -->
- <property name="maxhistory" value="60"/>
- <!-- 鏃ュ織鏂囦欢鍒嗗壊澶у皬 -->
- <property name="logSize" value="500MB"/>
-
- <!-- 鎺у埗鍙� -->
- <appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender">
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>DEBUG</level>
- </filter>
- <layout class="ch.qos.logback.classic.PatternLayout">
- <Pattern>${MESSAGE_FILE_PATTERN}</Pattern>
- </layout>
- </appender>
-
- <!-- error绾у埆鏃ュ織鏂囦欢 -->
- <appender name="errorAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>ERROR</level>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/error/ats_backend_error_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- info绾у埆鏃ュ織鏂囦欢 -->
- <appender name="infoAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/info/ats_backend_info_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- debug绾у埆鏃ュ織鏂囦欢 -->
- <appender name="debugAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>DEBUG</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/debug/ats_backend_debug_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
-
-
- <!-- 鎵撳嵃鐩戞帶鏃ュ織鏂囦欢
- <appender name="file鈥攎onitor" class="ch.qos.logback.core.FileAppender">
- <file>${LOG_HOME}/ats_backend_monitor.log</file>
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <encoder>
- <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%logger{50}.%M] - %msg%n</pattern>
- </encoder>
- </appender>
- -->
-
- <!--
- <logger name="monitor" additivity="false">
- <appender-ref ref="file鈥攎onitor"/>
- </logger>
- -->
-
- <!--db log configure-->
- <logger name="com.apache.ibatis" level="INFO"/>
- <logger name="java.sql.Connection" level="INFO"/>
- <logger name="java.sql.Statement" level="INFO"/>
- <logger name="java.sql.PreparedStatement" level="INFO"/>
- <logger name="org.springframework" level="INFO"/>
-
-
- <!-- 鐢熶骇鐜 -->
- <springProfile name="prod">
- <root level="info">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- </root>
- </springProfile>
-
- <!-- 娴嬭瘯鐜 -->
- <springProfile name="test">
- <root level="debug">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
-
- <!-- 寮�鍙戠幆澧� -->
- <springProfile name="dev">
- <root level="debug">
- <appender-ref ref="consoleAppender"/>
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
- <!-- 寮�鍙戠幆澧� -->
- <springProfile name="ess">
- <root level="debug">
- <appender-ref ref="consoleAppender"/>
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
- <shutdownHook class="ch.qos.logback.core.hook.DelayingShutdownHook"/>
- <appender name="LogzioLogbackAppender" class="io.logz.logback.LogzioLogbackAppender">
- <token>fJiEvGQzAuzwvDvfzUwDTEastOjHeuro</token>
- <logzioUrl>https://listener.logz.io:8071</logzioUrl>
- <logzioType>BASE-SERVICES-WEB-ess</logzioType>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>INFO</level>
- </filter>
- </appender>
-
- <root level="info">
- <!-- IMPORTANT: make sure to include this line, otherwise the appender won't be used -->
- <appender-ref ref="LogzioLogbackAppender"/>
- </root>
-</configuration>
diff --git a/product-server-project-web/src/main/resources/logback-spring.xml_prod b/product-server-project-web/src/main/resources/logback-spring.xml_prod
deleted file mode 100644
index f289f23..0000000
--- a/product-server-project-web/src/main/resources/logback-spring.xml_prod
+++ /dev/null
@@ -1,152 +0,0 @@
-<configuration>
- <!-- <property name="LOG_HOME" value="/opt/mrc_ats/logs/backend" /> -->
- <property name="LOG_HOME" value="./logs/backend" />
- <!-- <property name="LOG_HOME" value="/Users/fuller/Desktop/logs/backend" /> -->
- <timestamp key="byDate" datePattern="yyyy-MM-dd"/>
- <!--鏍煎紡鍖栬緭鍑猴細%d琛ㄧず鏃ユ湡锛�%thread琛ㄧず绾跨▼鍚嶏紝%-5level锛氱骇鍒粠宸︽樉绀�5涓瓧绗﹀搴�%msg锛氭棩蹇楁秷鎭紝%n鏄崲琛岀-->
- <property name="MESSAGE_FILE_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}.%M - %msg%n" />
- <!-- 鏃ュ織鏂囦欢淇濈暀鏃堕暱 -->
- <property name="maxhistory" value="60"/>
- <!-- 鏃ュ織鏂囦欢鍒嗗壊澶у皬 -->
- <property name="logSize" value="500MB"/>
-
- <!-- 鎺у埗鍙� -->
- <appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender">
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>DEBUG</level>
- </filter>
- <layout class="ch.qos.logback.classic.PatternLayout">
- <Pattern>${MESSAGE_FILE_PATTERN}</Pattern>
- </layout>
- </appender>
-
- <!-- error绾у埆鏃ュ織鏂囦欢 -->
- <appender name="errorAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>ERROR</level>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/error/ats_backend_error_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- info绾у埆鏃ュ織鏂囦欢 -->
- <appender name="infoAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/info/ats_backend_info_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
- <!-- debug绾у埆鏃ュ織鏂囦欢 -->
- <appender name="debugAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>DEBUG</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
- <fileNamePattern>${LOG_HOME}/debug/ats_backend_debug_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
- <!--鏃ュ織鏂囦欢淇濈暀澶╂暟-->
- <maxHistory>${maxhistory}</maxHistory>
- <!--鏃ュ織鍒嗗壊澶у皬-->
- <maxFileSize>${logSize}</maxFileSize>
- </rollingPolicy>
- <encoder>
- <pattern>${MESSAGE_FILE_PATTERN}</pattern>
- </encoder>
- </appender>
-
-
-
- <!-- 鎵撳嵃鐩戞帶鏃ュ織鏂囦欢
- <appender name="file鈥攎onitor" class="ch.qos.logback.core.FileAppender">
- <file>${LOG_HOME}/ats_backend_monitor.log</file>
- <append>true</append>
- <filter class="ch.qos.logback.classic.filter.LevelFilter">
- <level>INFO</level>
- <onMatch>ACCEPT</onMatch>
- <onMismatch>DENY</onMismatch>
- </filter>
- <encoder>
- <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%logger{50}.%M] - %msg%n</pattern>
- </encoder>
- </appender>
- -->
-
- <!--
- <logger name="monitor" additivity="false">
- <appender-ref ref="file鈥攎onitor"/>
- </logger>
- -->
-
- <!--db log configure-->
- <logger name="com.apache.ibatis" level="INFO"/>
- <logger name="java.sql.Connection" level="INFO"/>
- <logger name="java.sql.Statement" level="INFO"/>
- <logger name="java.sql.PreparedStatement" level="INFO"/>
- <logger name="org.springframework" level="INFO"/>
-
-
- <!-- 鐢熶骇鐜 -->
- <springProfile name="prod">
- <root level="info">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- </root>
- </springProfile>
-
- <!-- 娴嬭瘯鐜 -->
- <springProfile name="test">
- <root level="debug">
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
-
- <!-- 寮�鍙戠幆澧� -->
- <springProfile name="dev">
- <root level="debug">
- <appender-ref ref="consoleAppender"/>
- <appender-ref ref="errorAppender"/>
- <appender-ref ref="infoAppender"/>
- <appender-ref ref="debugAppender"/>
- </root>
- </springProfile>
- <shutdownHook class="ch.qos.logback.core.hook.DelayingShutdownHook"/>
- <appender name="LogzioLogbackAppender" class="io.logz.logback.LogzioLogbackAppender">
- <token>fJiEvGQzAuzwvDvfzUwDTEastOjHeuro</token>
- <logzioUrl>https://listener.logz.io:8071</logzioUrl>
- <logzioType>BASE-SERVICES-WEB-prod</logzioType>
- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
- <level>INFO</level>
- </filter>
- </appender>
-
- <root level="info">
- <!-- IMPORTANT: make sure to include this line, otherwise the appender won't be used -->
- <appender-ref ref="LogzioLogbackAppender"/>
- </root>
-</configuration>
diff --git a/product-server-project-web/src/main/resources/static/application-dev.properties b/product-server-project-web/src/main/resources/static/application-dev.properties
deleted file mode 100644
index a3e1302..0000000
--- a/product-server-project-web/src/main/resources/static/application-dev.properties
+++ /dev/null
@@ -1,137 +0,0 @@
-#======================================#
-#=============\u7cfb\u7edf\u53c2\u6570 \u76f8\u5173\u914d\u7f6e==============#
-#======================================#
-
-#\u4e0a\u4f20\u6587\u4ef6\u8def\u5f84,\u7edd\u5bf9
-
-#\u662f\u5426\u542f\u7528\u63a5\u53e3\u7b7e\u540d\u8ba4\u8bc1
-signature.isEnable=false
-#\u5728\u542f\u7528\u63a5\u53e3\u7b7e\u540d\u8ba4\u8bc1\u65f6\uff0c\u6392\u9664\u6307\u5b9a\u63a5\u53e3\u65e0\u9700\u7b7e\u540d\u8ba4\u8bc1
-signature.exclude.path=/login,/logout,/relogin
-#\u7b7e\u540d\u8ba4\u8bc1Key
-signature.key=MRC_!&ats@#_2019
-#\u63a5\u53e3\u7b7e\u540d\u8ba4\u8bc1\u6709\u6548\u671f\uff0c\u5355\u4f4d\u79d2
-signature.expire=10
-
-#token\u8fc7\u671f\u65f6\u95f4\uff0c\u5c0f\u65f6
-token.expiration=20
-#token\u9a8c\u8bc1\u3001\u767b\u5f55\u9a8c\u8bc1\uff0c\u6392\u9664URL,\u9017\u53f7\u5206\u9694
-token.exclude.path=/login,/logout,/relogin,/api/applyinfo/get-apply-info
-
-#\u662f\u5426\u6253\u5370\u9519\u8bef\u4fe1\u606f
-info.print=true
-error.info.print=true
-#\u662f\u5426\u6253\u5370\u9519\u8bef\u5806\u690e\u4fe1\u606f
-error.stack.trace.print=true
-#\u662f\u5426\u4fdd\u5b58\u9519\u8bef\u4fe1\u606f
-error.info.save=true
-
-#\u662f\u5426\u542f\u7528SQL\u76d1\u63a7,\u9ed8\u8ba4\u4e0d\u542f\u7528,\u662f\u5426\u5728\u540e\u53f0\u6253\u5370sql\u8bed\u53e5
-isMonitorSQL = false
-#\u67e5\u8be2\u65f6\u95f4\u8d85\u8fc7\u591a\u5c11\u79d2\u7684sql\u8bed\u53e5\u8bb0\u5f55\u5230\u5206\u6790\u6570\u636e\u5e93\u4e2d\uff0c\u65f6\u95f4\u5355\u4f4d\uff1a\u79d2
-monitorSQLTime = 3
-#\u662f\u5426\u542f\u7528\u7cfb\u7edf\u54cd\u5e94
-isMonitorRequest = false
-#\u7cfb\u7edf\u54cd\u5e94\u65f6\u95f4\u8d85\u8fc7\u591a\u5c11\u79d2\uff0c\u8bb0\u5f55\u5230\u76d1\u63a7\u6570\u636e\u5e93\u4e2d
-monitorRequestTime = 4
-#\u56fe\u5f62\u9a8c\u8bc1\u7801\u751f\u6210\u7684\u56fe\u7247\u8def\u5f84
-upload.file.temp.path=./lx_file/aptcha
-#\u4e0b\u62c9\u9009\u62e9\u663e\u793a\u6761\u6570
-prompt.show.rows=20
-#\u662f\u5426\u4fdd\u5b58\u501f\u8bef\u4fe1\u606f
-error.message.save=true
-#\u4e0a\u4f20\u6587\u4ef6\u5b58\u653e\u76ee\u5f55
-upload.file.path=./lx_file/upload
-#license鏂囦欢璺緞
-license.path=./
-#\u4e0a\u4f20\u6587\u4ef6\u5b58\u653e\u4e34\u65f6\u76ee\u5f55
-upload.file.temp.path=./lx_file/temp
-#\u4e0a\u4f20\u5355\u4e2a\u6587\u4ef6\u5927\u5c0f(\u9ed8\u8ba41M)
-upload.file.max.size=1048576
-#\u4e0a\u4f20\u603b\u6587\u4ef6\u5927\u5c0f(\u9ed8\u8ba410M)
-upload.max.size=10485760
-#license\u6587\u4ef6\u76ee\u5f55
-license.path=D:/Users/Administrator/Workspaces/MRC_ATS_Server/ats-server-web/target
-#======================================#
-#==============\u9ed8\u8ba4\u6570\u636e\u6e90\u8bbe\u7f6e ==============#
-#======================================#
-#\u6570\u636e\u5e93\u8fde\u63a5\u6c60\u7c7b\u578b druid\u3001c3p0
-data.source.pool.type=druid
-data.source.name=default
-data.source.type=mysql
-data.source.driver=com.mysql.jdbc.Driver
-#data.source.url=jdbc:mysql://192.168.0.108:3306/ats_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-#data.source.url=jdbc:mysql://183.61.0.54:3326/ats_db_new?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false
-#data.source.user=root
-#data.source.password=root
-#data.source.url=jdbc:mysql://localhost:3306/ats_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-#data.source.url=jdbc:mysql://183.61.0.54:3326/ats_db_new?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false
-#data.source.url=jdbc:mysql://localhost:3306/ats_db?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
-#data.source.user=root
-#data.source.password=root123
-data.source.url=jdbc:mysql://192.168.0.199:3306/lx_product_db?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=true&useSSL=false&serverTimezone=UTC
-data.source.user=ats
-data.source.password=duUstku?3Gu9hbuk
-#-------------------------druid\u8fde\u63a5\u6c60\u7684\u914d\u7f6e\u4fe1\u606f------------------------
-# \u521d\u59cb\u5316\u5927\u5c0f\uff0c\u6700\u5c0f\uff0c\u6700\u5927
-druid.datasource.initialSize=50
-druid.datasource.minIdle=50
-druid.datasource.maxActive=200
-# \u914d\u7f6e\u83b7\u53d6\u8fde\u63a5\u7b49\u5f85\u8d85\u65f6\u7684\u65f6\u95f4
-druid.datasource.maxWait=60000
-# \u914d\u7f6e\u95f4\u9694\u591a\u4e45\u624d\u8fdb\u884c\u4e00\u6b21\u68c0\u6d4b\uff0c\u68c0\u6d4b\u9700\u8981\u5173\u95ed\u7684\u7a7a\u95f2\u8fde\u63a5\uff0c\u5355\u4f4d\u662f\u6beb\u79d2
-druid.datasource.timeBetweenEvictionRunsMillis=60000
-# \u914d\u7f6e\u4e00\u4e2a\u8fde\u63a5\u5728\u6c60\u4e2d\u6700\u5c0f\u751f\u5b58\u7684\u65f6\u95f4\uff0c\u5355\u4f4d\u662f\u6beb\u79d2
-druid.datasource.minEvictableIdleTimeMillis=300000
-druid.datasource.validationQuery=SELECT 1
-druid.datasource.testWhileIdle=true
-druid.datasource.testOnBorrow=false
-druid.datasource.testOnReturn=false
-# \u6253\u5f00PSCache\uff0c\u5e76\u4e14\u6307\u5b9a\u6bcf\u4e2a\u8fde\u63a5\u4e0aPSCache\u7684\u5927\u5c0f
-druid.datasource.poolPreparedStatements=true
-druid.datasource.maxPoolPreparedStatementPerConnectionSize=20
-# \u914d\u7f6e\u76d1\u63a7\u7edf\u8ba1\u62e6\u622a\u7684filters\uff0c\u53bb\u6389\u540e\u76d1\u63a7\u754c\u9762sql\u65e0\u6cd5\u7edf\u8ba1\uff0c'wall'\u7528\u4e8e\u9632\u706b\u5899
-druid.datasource.filters=stat,wall,log4j
-# \u901a\u8fc7connectProperties\u5c5e\u6027\u6765\u6253\u5f00mergeSql\u529f\u80fd\uff1b\u6162SQL\u8bb0\u5f55
-druid.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
-#======================================#
-#========== Server settings ===========#
-#======================================#
-server.servlet.context-path=/ats
-server.port=9999
-#HTTP encoding
-spring.servlet.multipart.enabled=false
-spring.http.encoding.force=true
-spring.http.encoding.charset=UTF-8
-spring.http.encoding.enabled=true
-server.tomcat.uri-encoding=UTF-8
-#\u8bbe\u7f6esession\u8d85\u65f6\u65f6\u95f4
-server.servlet.session.timeout=7200
-
-
-
-spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
-
-awsS3.bucketName=mrc-ats
-awsS3.region = ap-southeast-1
-awsS3.accessKey=AKIAUHVHXZNNLAJQZANJ
-awsS3.secretKey=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
-
-#email
-email.serverhost=smtp.exmail.qq.com
-email.serverport=465
-email.username=notification@mrcintl.group
-email.password=D4hrLWLEP3fh9wBg
-email.fromaddress=notification@mrcintl.group
-email.fromname=MRC
-
-#eQuest
-equest.usarname=MRC-user
-equest.password=d4cember4$
-
-#parse_resume
-parse_resume.username=u100220
-parse_resume.password=mrc20190522
-
-#\u6307\u5b9a\u5730\u7406\u4f4d\u7f6e\u7684Path
-assign.geoPath=1,7
--
Gitblit v1.9.2