个人博客站已经上线了,网址 www.llwjy.com 欢迎各位吐槽
在前面的几篇博客中,我们已经介绍了如何采集纵横小说网站上的信息以及如何把这些信息持久化到数据库中,现在我们就开始介绍如何做分布式采集,让各个模块之间可以完美的配合。
采集类修改
在开始介绍分布式采集之前,我们需要对之前介绍的采集类添加一些方法,也就是返回上一篇博客中介绍的小说javabean,具体源码还请参照个人网站上的博客源码。
1.简介页
简介页需呀添加一个方法,让它返回简介页的数据信息,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 1/**
2 * @return
3 * @Author:lulei
4 * @Description: 分析简介页,获取简介页数据
5 */
6 public NovelIntroModel getNovelIntro() {
7 NovelIntroModel bean = new NovelIntroModel();
8 bean.setMd5Id(ParseMD5.parseStrToMd5L32(this.pageUrl));
9 bean.setName(getName());
10 bean.setAuthor(getAuthor());
11 bean.setDescription(getDesc());
12 bean.setType(getType());
13 bean.setLastChapter(getLatestChapter());
14 bean.setChapterlisturl(getChapterListUrl());
15 bean.setWordCount(getWordCount());
16 bean.setKeyWords(keyWords());
17 return bean;
18 }
19
1
2 12.阅读页
2
阅读页内同样需要添加一个方法,让它返回阅读页内的数据信息,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14 1/**
2 * @return
3 * @Author:lulei
4 * @Description: 分析阅读页,获取阅读页数据
5 */
6 public NovelReadModel getNovelRead(){
7 NovelReadModel novel = new NovelReadModel();
8 novel.setTitle(getTitle());
9 novel.setWordCount(getWordCount());
10 novel.setContent(getContent());
11 return novel;
12
13 }
14
这些方法都是对之前类中的方法做一个整合,将之前分析到的数据组装成一个javabean返回,方便后面的操作。
各页采集线程类
在实现分布式采集的时候,就需要编写各个页面的采集线程类,让他来控制各页面的采集业务,下面我们就一一介绍:
1.更新列表页线程
这个线程的主要功能就是监控更新列表页的数据,提取页面上的简介页URL,认为它们是有更新的页面,将对应的信息持久化到数据库中,具体实现如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48 1/**
2 *@Description: 更新列表页线程
3 */
4package com.lulei.crawl.novel.zongheng;
5
6import java.util.List;
7import java.util.concurrent.TimeUnit;
8
9import com.lulei.db.novel.zongheng.ZonghengDb;
10
11public class UpdateListThread extends Thread{
12 private boolean flag = false;
13 private String url;//抓取的更新列表页URL
14 private int frequency;//采集频率
15
16 public UpdateListThread(String name, String url, int frequency){
17 super(name);
18 this.url = url;
19 this.frequency = frequency;
20 }
21
22 @Override
23 public void run() {
24 flag = true;
25 ZonghengDb db = new ZonghengDb();
26 while (flag){
27 try {
28 UpdateList updateList = new UpdateList(url);
29 List<String> urls = updateList.getPageUrls(true);
30 db.saveInfoUrls(urls);
31 TimeUnit.SECONDS.sleep(frequency);
32 } catch (Exception e) {
33 // TODO Auto-generated catch block
34 e.printStackTrace();
35 }
36 }
37 super.run();
38 }
39
40 public static void main(String[] args) {
41 // TODO Auto-generated method stub
42 UpdateListThread thread = new UpdateListThread("llist", "http://book.zongheng.com/store/c0/c0/b9/u0/p1/v0/s9/t0/ALL.html", 60);
43 thread.start();
44
45 }
46
47}
48
1
2 12.简介页&章节列表页线程类
2
由于一个简介页就对应一个章节列表页,所以我们就把这两个线程合为一个线程,让其实现小说简介信息的采集以及小说章节列表信息的采集,具体实现如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56 1/**
2 *@Description: 小说简介信息线程
3 */
4package com.lulei.crawl.novel.zongheng;
5
6import java.util.List;
7import java.util.concurrent.TimeUnit;
8
9import com.lulei.crawl.novel.zongheng.model.NovelIntroModel;
10import com.lulei.db.novel.zongheng.ZonghengDb;
11
12public class IntroPageThread extends Thread {
13 private boolean flag = false;
14
15 public IntroPageThread(String name) {
16 super(name);
17 }
18
19 @Override
20 public void run() {
21 flag = true;
22 try {
23 ZonghengDb db = new ZonghengDb();
24 while (flag) {
25 //随机获取一个待采集的简介页url
26 String url = db.getRandIntroPageUrl(1);
27 if (url != null) {
28 IntroPage intro = new IntroPage(url);
29 NovelIntroModel bean = intro.getNovelIntro();
30 //采集小说章节列表页信息
31 ChapterPage chapterPage = new ChapterPage(bean.getChapterlisturl());
32 List<String[]> chapters = chapterPage.getChaptersInfo();
33 bean.setChapterCount(chapters == null ? 0 : chapters.size());
34 //更新小说简介信息
35 db.updateInfo(bean);
36 //插入待采集的章节列表
37 db.saveChapters(chapters);
38 //如果本次有待采集的资源,睡眠一个时间,没有待采集的资源,睡眠另一个时间
39 TimeUnit.MILLISECONDS.sleep(500);
40 }else {
41 TimeUnit.MILLISECONDS.sleep(1000);
42 }
43 }
44 } catch (Exception e) {
45 e.printStackTrace();
46 }
47 }
48
49 public static void main(String[] args) {
50 // TODO Auto-generated method stub
51 IntroPageThread thread = new IntroPageThread("novelinfo");
52 thread.start();
53 }
54
55}
56
1
2 13.阅读页线程
2
这个线程的主要功能就是将小说阅读页的信息采集并持久化到数据库中,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58 1/**
2 *@Description: 小说阅读页线程
3 */
4package com.lulei.crawl.novel.zongheng;
5
6import java.util.concurrent.TimeUnit;
7
8import com.lulei.crawl.novel.zongheng.model.NovelChapterModel;
9import com.lulei.crawl.novel.zongheng.model.NovelReadModel;
10import com.lulei.db.novel.zongheng.ZonghengDb;
11import com.lulei.util.ParseMD5;
12
13
14public class ReadPageThread extends Thread {
15 private boolean flag = false;
16 public ReadPageThread(String name) {
17 super(name);
18 }
19
20 @Override
21 public void run() {
22 flag = true;
23 ZonghengDb db = new ZonghengDb();
24 while (flag) {
25 try {
26 //随机获取待采集的阅读页
27 NovelChapterModel chapter = db.getRandReadPageUrl(1);
28 if (chapter != null) {
29 ReadPage read = new ReadPage(chapter.getUrl());
30 NovelReadModel novel = read.getNovelRead();
31 if (novel == null) {
32 continue;
33 }
34 novel.setChapterId(chapter.getChapterId());
35 novel.setTime(chapter.getTime());
36 novel.setUrl(chapter.getUrl());
37 //保存阅读页信息
38 db.saveNovelRead(novel);
39 //将状态修改为不需要采集
40 db.updateChapterState(ParseMD5.parseStrToMd5L32(novel.getUrl()), 0);
41 //如果本次有待采集的资源,睡眠一个时间,没有待采集的资源,睡眠另一个时间
42 TimeUnit.MILLISECONDS.sleep(500);
43 } else {
44 TimeUnit.MILLISECONDS.sleep(1000);
45 }
46 } catch(Exception e){
47 e.printStackTrace();
48 }
49 }
50 }
51
52 public static void main(String[] args) {
53 ReadPageThread thread = new ReadPageThread("novel read page");
54 thread.start();
55 }
56
57}
58
分布式采集
上面已经介绍完了各个线程完成的工作,下面就需要一个类来控制管理这些线程,让其运行起来,具体代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81 1/**
2 *@Description:
3 */
4package com.lulei.crawl.novel.zongheng;
5
6import java.util.List;
7
8import com.lulei.crawl.novel.zongheng.model.CrawlListInfo;
9import com.lulei.db.novel.zongheng.ZonghengDb;
10
11public class CrawStart {
12 private static boolean booleanCrawlList = false;
13 private static boolean booleanCrawlIntro = false;
14 //简介页采集线程数目
15 private static int crawlIntroThreadNum = 2;
16 private static boolean booleanCrawlRead = false;
17 //阅读页采集线程数目
18 private static int crawlReadThreadNum = 10;
19
20 /**
21 * @Author:lulei
22 * @Description: 更新列表页采集
23 */
24 public void startCrawlList(){
25 if (booleanCrawlList) {
26 return;
27 }
28 booleanCrawlList = true;
29 ZonghengDb db = new ZonghengDb();
30 List<CrawlListInfo> infos = db.getCrawlListInfos();
31 if (infos == null) {
32 return;
33 }
34 for (CrawlListInfo info : infos) {
35 if (info.getUrl() == null || "".equals(info.getUrl())) {
36 continue;
37 }
38 UpdateListThread thread = new UpdateListThread(info.getInfo(), info.getUrl(), info.getFrequency());
39 thread.start();
40 }
41 }
42
43 /**
44 * @Author:lulei
45 * @Description: 小说简介页和章节列表页
46 */
47 public void startCrawlIntro() {
48 if (booleanCrawlIntro) {
49 return;
50 }
51 booleanCrawlIntro = true;
52 for (int i = 0; i < crawlIntroThreadNum; i++) {
53 IntroPageThread thread = new IntroPageThread("novel info thread" + i);
54 thread.start();
55 }
56 }
57
58 /**
59 * @Author:lulei
60 * @Description: 小说阅读页
61 */
62 public void startCrawlRead() {
63 if (booleanCrawlRead) {
64 return;
65 }
66 booleanCrawlRead = true;
67 for (int i = 0; i < crawlReadThreadNum; i++) {
68 ReadPageThread thread = new ReadPageThread("novel read page" + i);
69 thread.start();
70 }
71 }
72
73 public static void main(String[] args) {
74 CrawStart start = new CrawStart();
75 start.startCrawlList();
76 start.startCrawlIntro();
77 start.startCrawlRead();
78 }
79
80}
81
运行结果
通过上面的这几个步骤,纵横小说的分布式采集程序已经完成,下面就为大家展示一下采集后的数据库截图
写在最后
在上面的线程实现中,有很多的配置信息,比如说线程中的两个请求之间的间隔时间以及各类线程的数量,像这些信息我们都可以将其写到配置文件中,方便之后的修改(这里写到程序中是方便大家的理解,还请见谅)。
ps:最近发现其他网站可能会对博客转载,上面并没有源链接,如想查看更多关于 基于http://www.aiuxian.com/catalog/p-322798.html 请点击这里。或访问网址http://blog.csdn.net/xiaojimanman/article/category/2841877 或 http://www.llwjy.com/blogtype/lucene.html
小福利
个人在极客学院上《Lucene案例开发》课程已经上线了(目前上线到第二课),欢迎大家吐槽~
第一课:Lucene概述
第二课:Lucene 常用功能介绍
版权声明:本文为博主原创文章,未经博主允许不得转载。