Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
javamxd committed Apr 13, 2020
1 parent 59d6529 commit 2e0be2b
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion spider-flow-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion spider-flow-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
26 changes: 25 additions & 1 deletion spider-flow-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
7 changes: 5 additions & 2 deletions spider-flow-web/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion spider-flow-web/src/main/resources/static/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion spider-flow-web/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 2e0be2b

Please sign in to comment.