This commit is contained in:
mxd 2020-04-13 08:41:59 +08:00
parent 59d652954b
commit 2e0be2bbeb
7 changed files with 35 additions and 8 deletions

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow</artifactId>
<version>0.4.3</version>
<version>0.5.0</version>
<packaging>pom</packaging>
<name>spider-flow</name>
<url>https://gitee.com/jmxd/spider-flow</url>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow</artifactId>
<version>0.4.3</version>
<version>0.5.0</version>
</parent>
<artifactId>spider-flow-api</artifactId>
<name>spider-flow-api</name>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow</artifactId>
<version>0.4.3</version>
<version>0.5.0</version>
</parent>
<artifactId>spider-flow-core</artifactId>
<name>spider-flow-core</name>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow</artifactId>
<version>0.4.3</version>
<version>0.5.0</version>
</parent>
<artifactId>spider-flow-web</artifactId>
<name>spider-flow-web</name>
@ -17,6 +17,30 @@
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-core</artifactId>
</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>
<build>
<plugins>

View File

@ -10,6 +10,11 @@ spider.thread.default=8
spider.job.enable=false
#爬虫任务的工作空间
spider.workspace=/data/spider
#布隆过滤器默认容量
spider.bloomfilter.capacity=1000000
#布隆过滤器默认容错率
spider.bloomfilter.error-rate=0.0001
#死循环检测(节点执行次数超过该值时认为是死循环)默认值为5000
#spider.detect.dead-cycle=5000
@ -24,8 +29,6 @@ spring.datasource.username=root
spring.datasource.password=123456789
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 邮件发送的配置
spring.mail.protocol=smtp
spring.mail.host=smtp.qq.com

View File

@ -393,7 +393,7 @@ html,body{
left: 50%;
border-width: 8px;
border-style: solid;
border-color: #eee transparent transparent transparent;
border-color: #ccc transparent transparent transparent;
margin-left: -4px;
}
.spiderflow-debug-tooltip::after{

View File

@ -6,7 +6,7 @@
<link rel="stylesheet" href="js/layui/css/layui.css" />
<link rel="stylesheet" id="theSkin" />
<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/index.js" ></script>
<script type="text/javascript" src="https://www.spiderflow.org/update-detection.js"></script>