内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

前后端分離的爬蟲(chóng)小項(xiàng)目

前后端分離的爬蟲(chóng)小項(xiàng)目-----EncycProject


EncycProject項(xiàng)目使用現(xiàn)在流行的前后端分離技術(shù);此項(xiàng)目創(chuàng)作目的是實(shí)踐。利用此項(xiàng)目快速搭建環(huán)境和快速入門(mén)。該項(xiàng)目的主線是建立寵物社區(qū)網(wǎng)站。目前該項(xiàng)目完成第一個(gè)模塊:寵物百科;剩余模塊陸續(xù)開(kāi)發(fā)中。(此項(xiàng)目可以變更,第一模塊耦合度低)

成都網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、成都網(wǎng)站建設(shè)公司、微信開(kāi)發(fā)、小程序開(kāi)發(fā)、集團(tuán)成都定制網(wǎng)站等服務(wù)項(xiàng)目。核心團(tuán)隊(duì)均擁有互聯(lián)網(wǎng)行業(yè)多年經(jīng)驗(yàn),服務(wù)眾多知名企業(yè)客戶;涵蓋的客戶類(lèi)型包括:廣告推廣等眾多領(lǐng)域,積累了大量豐富的經(jīng)驗(yàn),同時(shí)也獲得了客戶的一致贊賞!


項(xiàng)目地址

項(xiàng)目GitHub地址

1 項(xiàng)目效果

1.1 效果圖:

爬蟲(chóng)數(shù)據(jù)
前后端分離的爬蟲(chóng)小項(xiàng)目
數(shù)據(jù)庫(kù)數(shù)據(jù)
前后端分離的爬蟲(chóng)小項(xiàng)目
前端
前后端分離的爬蟲(chóng)小項(xiàng)目
前后端分離的爬蟲(chóng)小項(xiàng)目

待續(xù)

2 項(xiàng)目結(jié)構(gòu)圖

3.1 框架整合

3.1.1 pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.5.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.threadnew</groupId>
    <artifactId>encycproject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>encycproject</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.0.1</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>MySQL</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <!--導(dǎo)入webmagic爬蟲(chóng)的包-->
        <dependency>
            <groupId>us.codecraft</groupId>
            <artifactId>webmagic-core</artifactId>
            <version>0.7.3</version>
        </dependency>
        <dependency>
            <groupId>us.codecraft</groupId>
            <artifactId>webmagic-extension</artifactId>
            <version>0.7.3</version>
        </dependency>
        <!--配置druid-->
        <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.1.17</version>
        </dependency>
        <!--import solr-->
        <!-- Compile -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-solr</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
3.1.2 applicaton.yml
spring:
  data:
    solr:
      host: http://localhost:8080/solr
  datasource:
    name: encycproject
    type: com.alibaba.druid.pool.DruidDataSource
    #druid相關(guān)配置
    druid:
      #監(jiān)控統(tǒng)計(jì)攔截的filters
      filters: stat
      driver-class-name: com.mysql.cj.jdbc.Driver
      #基本屬性
      url: jdbc:mysql://127.0.0.1:3306/animal?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8
      username: root
      password: 1234
      #配置初始化大小/最小/最大
      initial-size: 1
      min-idle: 1
      max-active: 20
      #獲取連接等待超時(shí)時(shí)間
      max-wait: 60000
      #間隔多久進(jìn)行一次檢測(cè),檢測(cè)需要關(guān)閉的空閑連接
      time-between-eviction-runs-millis: 60000
      #一個(gè)連接在池中最小生存的時(shí)間
      min-evictable-idle-time-millis: 300000
      validation-query: SELECT 'x'
      test-while-idle: true
      test-on-borrow: false
      test-on-return: false
      #打開(kāi)PSCache,并指定每個(gè)連接上PSCache的大小。oracle設(shè)為true,mysql設(shè)為false。分庫(kù)分表較多推薦設(shè)置為false
      pool-prepared-statements: false
      max-pool-prepared-statement-per-connection-size: 20
server:
  port: 8100
3.1.3 前端的axios的代理

在config文件夾下的index.js中的proxyTable下添加如下代碼

 '/apis':{
        target: 'http://192.168.43.103:8100/',  // 后臺(tái)api
        changeOrigin: true,  //是否跨域
        // secure: true,
        pathRewrite: {
          '^/apis': ''   //需要rewrite的,
        }
      }
 > 未完待續(xù)

新聞標(biāo)題:前后端分離的爬蟲(chóng)小項(xiàng)目
標(biāo)題路徑:http://m.rwnh.cn/article44/gdidee.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、網(wǎng)站排名網(wǎng)站改版、小程序開(kāi)發(fā)、網(wǎng)站收錄、網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

小程序開(kāi)發(fā)

網(wǎng)站設(shè)計(jì)公司知識(shí)

栾城县| 加查县| 洪洞县| 丹江口市| 滦南县| 贵州省| 延津县| 苗栗县| 大石桥市| 乃东县| 关岭| 鲁甸县| 齐齐哈尔市| 南郑县| 汾西县| 永春县| 诸城市| 鲁山县| 石渠县| 大城县| 盱眙县| 宜宾市| 丹江口市| 海兴县| 教育| 太谷县| 兴化市| 宜兰县| 上栗县| 永胜县| 山阳县| 威宁| 巴南区| 万全县| 二手房| 吕梁市| 德阳市| 常宁市| 苍南县| 禹城市| 贡觉县|