Files
novel-plus/novel-crawl/src/main/java/com/java2nb/novel/utils/Constants.java
2025-03-14 20:39:57 +08:00

33 lines
665 B
Java

package com.java2nb.novel.utils;
/**
* @author Administrator
*/
public class Constants {
/**
* 本地图片保存前缀
*/
public static final String LOCAL_PIC_PREFIX = "/localPic/";
/**
* 访问量默认值
*/
public static final Long VISIT_COUNT_DEFAULT = 100L;
/**
* 爬取小说http请求中无效的内容长度
*/
public static final int INVALID_HTML_LENGTH = 1500;
/**
* 爬取小说http请求失败重试次数
*/
public static final Integer HTTP_FAIL_RETRY_COUNT = 3;
/**
* 爬虫默认编码
*/
public static final String CRAWL_DEFAULT_CHARSET = "UTF-8";
}