crawler maven pom

<?xml version="1.0" encoding="UTF-8"?>


4.0.0

<groupId>cn.itcast</groupId>
<artifactId>itcast-crawler-first</artifactId>
<version>1.0-SNAPSHOT</version>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependencies>
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

    <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>1.7.25</version>
    </dependency>

</dependencies>
上一篇:关于scrapy中如何区分是接着发起请求还是开始保存文件


下一篇:sql函数PadLeft与PadRight代码实例