v0.5.0
This commit is contained in:
parent
59d652954b
commit
2e0be2bbeb
2
pom.xml
2
pom.xml
@ -5,7 +5,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.spiderflow</groupId>
|
<groupId>org.spiderflow</groupId>
|
||||||
<artifactId>spider-flow</artifactId>
|
<artifactId>spider-flow</artifactId>
|
||||||
<version>0.4.3</version>
|
<version>0.5.0</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>spider-flow</name>
|
<name>spider-flow</name>
|
||||||
<url>https://gitee.com/jmxd/spider-flow</url>
|
<url>https://gitee.com/jmxd/spider-flow</url>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.spiderflow</groupId>
|
<groupId>org.spiderflow</groupId>
|
||||||
<artifactId>spider-flow</artifactId>
|
<artifactId>spider-flow</artifactId>
|
||||||
<version>0.4.3</version>
|
<version>0.5.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>spider-flow-api</artifactId>
|
<artifactId>spider-flow-api</artifactId>
|
||||||
<name>spider-flow-api</name>
|
<name>spider-flow-api</name>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.spiderflow</groupId>
|
<groupId>org.spiderflow</groupId>
|
||||||
<artifactId>spider-flow</artifactId>
|
<artifactId>spider-flow</artifactId>
|
||||||
<version>0.4.3</version>
|
<version>0.5.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>spider-flow-core</artifactId>
|
<artifactId>spider-flow-core</artifactId>
|
||||||
<name>spider-flow-core</name>
|
<name>spider-flow-core</name>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.spiderflow</groupId>
|
<groupId>org.spiderflow</groupId>
|
||||||
<artifactId>spider-flow</artifactId>
|
<artifactId>spider-flow</artifactId>
|
||||||
<version>0.4.3</version>
|
<version>0.5.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>spider-flow-web</artifactId>
|
<artifactId>spider-flow-web</artifactId>
|
||||||
<name>spider-flow-web</name>
|
<name>spider-flow-web</name>
|
||||||
@ -17,6 +17,30 @@
|
|||||||
<groupId>org.spiderflow</groupId>
|
<groupId>org.spiderflow</groupId>
|
||||||
<artifactId>spider-flow-core</artifactId>
|
<artifactId>spider-flow-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spiderflow</groupId>
|
||||||
|
<artifactId>spider-flow-redis</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spiderflow</groupId>
|
||||||
|
<artifactId>spider-flow-mongodb</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spiderflow</groupId>
|
||||||
|
<artifactId>spider-flow-selenium</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spiderflow</groupId>
|
||||||
|
<artifactId>spider-flow-ocr</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spiderflow</groupId>
|
||||||
|
<artifactId>spider-flow-oss</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spiderflow</groupId>
|
||||||
|
<artifactId>spider-flow-mailbox</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -10,6 +10,11 @@ spider.thread.default=8
|
|||||||
spider.job.enable=false
|
spider.job.enable=false
|
||||||
#爬虫任务的工作空间
|
#爬虫任务的工作空间
|
||||||
spider.workspace=/data/spider
|
spider.workspace=/data/spider
|
||||||
|
#布隆过滤器默认容量
|
||||||
|
spider.bloomfilter.capacity=1000000
|
||||||
|
#布隆过滤器默认容错率
|
||||||
|
spider.bloomfilter.error-rate=0.0001
|
||||||
|
|
||||||
#死循环检测(节点执行次数超过该值时认为是死循环)默认值为5000
|
#死循环检测(节点执行次数超过该值时认为是死循环)默认值为5000
|
||||||
#spider.detect.dead-cycle=5000
|
#spider.detect.dead-cycle=5000
|
||||||
|
|
||||||
@ -24,8 +29,6 @@ spring.datasource.username=root
|
|||||||
spring.datasource.password=123456789
|
spring.datasource.password=123456789
|
||||||
spring.datasource.url=jdbc:mysql://localhost:3306/spiderflow?useSSL=false&useUnicode=true&characterEncoding=UTF8&autoReconnect=true
|
spring.datasource.url=jdbc:mysql://localhost:3306/spiderflow?useSSL=false&useUnicode=true&characterEncoding=UTF8&autoReconnect=true
|
||||||
|
|
||||||
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration,org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration
|
|
||||||
|
|
||||||
#JavaMailSender 邮件发送的配置
|
#JavaMailSender 邮件发送的配置
|
||||||
spring.mail.protocol=smtp
|
spring.mail.protocol=smtp
|
||||||
spring.mail.host=smtp.qq.com
|
spring.mail.host=smtp.qq.com
|
||||||
|
@ -393,7 +393,7 @@ html,body{
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
border-width: 8px;
|
border-width: 8px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: #eee transparent transparent transparent;
|
border-color: #ccc transparent transparent transparent;
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
.spiderflow-debug-tooltip::after{
|
.spiderflow-debug-tooltip::after{
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<link rel="stylesheet" href="js/layui/css/layui.css" />
|
<link rel="stylesheet" href="js/layui/css/layui.css" />
|
||||||
<link rel="stylesheet" id="theSkin" />
|
<link rel="stylesheet" id="theSkin" />
|
||||||
<link rel="stylesheet" href="css/index.css" />
|
<link rel="stylesheet" href="css/index.css" />
|
||||||
<script>SPIDER_FLOW_VERSION = '0.4.3'</script>
|
<script>SPIDER_FLOW_VERSION = '0.5.0'</script>
|
||||||
<script type="text/javascript" src="js/layui/layui.all.js" ></script>
|
<script type="text/javascript" src="js/layui/layui.all.js" ></script>
|
||||||
<script type="text/javascript" src="js/index.js" ></script>
|
<script type="text/javascript" src="js/index.js" ></script>
|
||||||
<script type="text/javascript" src="https://www.spiderflow.org/update-detection.js"></script>
|
<script type="text/javascript" src="https://www.spiderflow.org/update-detection.js"></script>
|
||||||
|
Loading…
Reference in New Issue
Block a user