亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

使用Idea簡(jiǎn)單快速搭建springcloud項(xiàng)目的圖文教程

 更新時(shí)間:2021年01月06日 08:33:11   作者:Firm陳  
這篇文章主要介紹了使用Idea簡(jiǎn)單快速搭建springcloud項(xiàng)目,本文通過(guò)圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

前言:
開(kāi)發(fā)工具:IntelliJ IDEA 2020版 (Ultimate Edition)
框架:spring boot 、spring cloud
搭建一套spring cloud微服務(wù)系統(tǒng),實(shí)現(xiàn)服務(wù)之間的調(diào)用。
需要搭建一個(gè)父工程springcloud-test,一個(gè)服務(wù)注冊(cè)中心eureka-server,兩個(gè)微服務(wù)cloud-client,cloud-provider。
兩個(gè)微服務(wù)均注冊(cè)到服務(wù)注冊(cè)中心。

一.搭建父項(xiàng)目

在這里插入圖片描述

2.

在這里插入圖片描述

3.

在這里插入圖片描述

(1)刪掉src目錄

在這里插入圖片描述

(2)定義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.4.1</version>
  <relativePath/> <!-- lookup parent from repository -->
 </parent>

 <groupId>com.chen.test</groupId>
 <artifactId>springcloud-test</artifactId>
 <version>1.0-SNAPSHOT</version>
 <packaging>pom</packaging>
 
 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  <java.version>1.8</java.version>
 </properties>
 
</project>

二.搭建eureka-server注冊(cè)中心

1.

在這里插入圖片描述

2.

在這里插入圖片描述

3.

在這里插入圖片描述

4.

在這里插入圖片描述

5.

在這里插入圖片描述
6.

(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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0</modelVersion>

 <!--引入父工程依賴-->
 <parent>
  <groupId>com.chen.test</groupId>
  <artifactId>springcloud-test</artifactId>
  <version>1.0-SNAPSHOT</version>
 </parent>

 <groupId>com.chen.test</groupId>
 <artifactId>eureka-server</artifactId>
 <version>0.0.1-SNAPSHOT</version>
 <packaging>jar</packaging>
 <name>eureka-server</name>
 <description>Demo project for Spring Boot</description>

 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  <java.version>1.8</java.version>
  <spring-cloud.version>2020.0.0</spring-cloud.version>
 </properties>

 <dependencies>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
   <scope>test</scope>
  </dependency>
 </dependencies>

 <dependencyManagement>
  <dependencies>
   <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>${spring-cloud.version}</version>
    <type>pom</type>
    <scope>import</scope>
   </dependency>
  </dependencies>
 </dependencyManagement>

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

 <repositories>
  <repository>
   <id>spring-milestones</id>
   <name>Spring Milestones</name>
   <url>https://repo.spring.io/milestone</url>
  </repository>
 </repositories>

</project>

(2)刪掉test文件夾(自己設(shè)置,可有可無(wú))
(3)啟動(dòng)加注解@EnableEurekaServer(開(kāi)啟eureka服務(wù))

package com.chen.test.eurekaserver;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {

 public static void main(String[] args) {
  SpringApplication.run(EurekaServerApplication.class, args);
 }

}

(4)定義配置文件
配置文件改為application.yml(可有可無(wú),看自己喜好)

server:
 port: 8080

spring:
 application:
 #應(yīng)用名稱(在注冊(cè)中顯示的)
 name: eureka-server
eureka:
 client:
 #此客戶端是否獲取eureka服務(wù)器注冊(cè)表上的注冊(cè)信息,默認(rèn)為true
 fetch-registry: false
 #實(shí)例是否在eureka服務(wù)器上注冊(cè)自己的信息以供其他服務(wù)發(fā)現(xiàn),默認(rèn)為true,即自己注冊(cè)自己。
 register-with-eureka: true
 #與Eureka注冊(cè)服務(wù)中心的通信zone和url地址
 serviceUrl:
  #http://localhost:8080/eureka/eureka
  defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka
 #服務(wù)注冊(cè)中心實(shí)例的主機(jī)名
 instance:
 hostname: 127.0.0.1
 prefer-ip-address: true
 instance-id: 127.0.0.1:8080
 server:
 #設(shè)為false,關(guān)閉自我保護(hù),即Eureka server在云心光器件會(huì)去統(tǒng)計(jì)心跳失敗比例在15分鐘之內(nèi)是否低于85%,如果低于85%,EurekaServer
 #會(huì)將這些事例保護(hù)起來(lái),讓這些事例不會(huì)過(guò)期,但是在保護(hù)器內(nèi)如果剛哈這個(gè)服務(wù)提供者非正常下線了,此時(shí)服務(wù)消費(fèi)者會(huì)拿到一個(gè)無(wú)效的服務(wù)
 #實(shí)例,此時(shí)調(diào)用會(huì)失敗,對(duì)于這個(gè)問(wèn)題需要服務(wù)消費(fèi)者端有一些容錯(cuò)機(jī)制,如重試、斷路器等;
 enable-self-preservation: false
 #掃描失效服務(wù)的間隔時(shí)間(單位是毫秒,摩恩是60*1000),即60s
 eviction-interval-timer-in-ms: 10000

(5)測(cè)試

在這里插入圖片描述

三.搭建提供者服務(wù)

1.

在這里插入圖片描述

2.

在這里插入圖片描述

3.

在這里插入圖片描述

4.

在這里插入圖片描述

5.

在這里插入圖片描述

6.

(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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0</modelVersion>
 <!--引入父工程依賴-->
 <parent>
  <groupId>com.chen.test</groupId>
  <artifactId>springcloud-test</artifactId>
  <version>1.0-SNAPSHOT</version>
 </parent>
 
 <groupId>com.chen.test</groupId>
 <artifactId>cloud-provider</artifactId>
 <version>0.0.1-SNAPSHOT</version>
 <packaging>jar</packaging>
 <name>cloud-provider</name>
 <description>Demo project for Spring Boot</description>

 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  <java.version>1.8</java.version>
  <spring-cloud.version>2020.0.0</spring-cloud.version>
 </properties>

 <dependencies>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
   <scope>test</scope>
  </dependency>
 </dependencies>

 <dependencyManagement>
  <dependencies>
   <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>${spring-cloud.version}</version>
    <type>pom</type>
    <scope>import</scope>
   </dependency>
  </dependencies>
 </dependencyManagement>

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

 <repositories>
  <repository>
   <id>spring-milestones</id>
   <name>Spring Milestones</name>
   <url>https://repo.spring.io/milestone</url>
  </repository>
 </repositories>

</project>

(2)刪除test文件加(可有可無(wú))
(3)修改配置文件為application.yml(可有可無(wú))

spring:
 application:
 name: cloud-provider
server:
 port: 8081

eureka:
 client:
 #此客戶端是否獲取eureka服務(wù)器注冊(cè)表上的注冊(cè)信息,默認(rèn)為true
 fetch-registry: false
 #實(shí)例是否在eureka服務(wù)器上注冊(cè)自己的信息以供其他服務(wù)發(fā)現(xiàn),默認(rèn)為true,即自己注冊(cè)自己。
 register-with-eureka: true
 service-url:
  #defaultZone 這個(gè)是不會(huì)提示的,此處需要自己寫(xiě)
  #實(shí)際上屬性應(yīng)該是service-url,這個(gè)屬性是個(gè)map(key-value)格式;當(dāng)key是defaultZone的時(shí)候才能被解析;所以這里沒(méi)有提示,
  #但是自己還需要寫(xiě)一個(gè)defaultZone;
  defaultZone: http://localhost:8080/eureka
 #服務(wù)注冊(cè)中心實(shí)例的主機(jī)名
 instance:
 hostname: 127.0.0.1
 prefer-ip-address: true
 instance-id: 127.0.0.1:8081

(4)啟動(dòng)類加注解@EnableEurekaClient

package com.chen.test.cloudprovider;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
public class CloudProviderApplication {

 public static void main(String[] args) {
  SpringApplication.run(CloudProviderApplication.class, args);
 }

}

(5)測(cè)試

在這里插入圖片描述

四.搭建消費(fèi)者服務(wù)

1.

在這里插入圖片描述

2.

在這里插入圖片描述

3.

在這里插入圖片描述

4.

在這里插入圖片描述

5.

在這里插入圖片描述

(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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0</modelVersion>
 <!--引入父工程依賴-->
 <parent>
  <groupId>com.chen.test</groupId>
  <artifactId>springcloud-test</artifactId>
  <version>1.0-SNAPSHOT</version>
 </parent>
 
 <groupId>com.chen.demo</groupId>
 <artifactId>cloud-client</artifactId>
 <version>0.0.1-SNAPSHOT</version>
 <packaging>jar</packaging>
 <name>cloud-client</name>
 <description>Demo project for Spring Boot</description>

 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  <java.version>1.8</java.version>
  <spring-cloud.version>2020.0.0</spring-cloud.version>
 </properties>

 <dependencies>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-openfeign</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
   <scope>test</scope>
  </dependency>
 </dependencies>

 <dependencyManagement>
  <dependencies>
   <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>${spring-cloud.version}</version>
    <type>pom</type>
    <scope>import</scope>
   </dependency>
  </dependencies>
 </dependencyManagement>

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

 <repositories>
  <repository>
   <id>spring-milestones</id>
   <name>Spring Milestones</name>
   <url>https://repo.spring.io/milestone</url>
  </repository>
 </repositories>

</project>

(2)刪除test文件夾(可有可無(wú))
(3)修改配置文件為application.yml(可有可無(wú))

server:
 #定義端口號(hào)
 port: 8082
spring:
 application:
 #定義應(yīng)用名稱,即服務(wù)名稱
 name: cloud-client
eureka:
 client:
 service-url:
  defaultZone: http://localhost:8080/eureka
 #服務(wù)注冊(cè)中心實(shí)例的主機(jī)名
 instance:
 hostname: 127.0.0.1
 prefer-ip-address: true
 instance-id: 127.0.0.1:8082

(4)啟動(dòng)類加注解@EnableEurekaClient

package com.chen.demo.cloudclient;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
public class CloudClientApplication {

 public static void main(String[] args) {
  SpringApplication.run(CloudClientApplication.class, args);
 }

}

(5)測(cè)試

在這里插入圖片描述

(6)在父pom中加上

<modules>
  <module>eureka-server</module>
  <module>cloud-provider</module>
  <module>cloud-client</module>
 </modules>

在這里插入圖片描述

五.實(shí)現(xiàn)服務(wù)之間的調(diào)用

1.在cloud-provider中創(chuàng)建controller包和service包

package com.chen.test.cloudprovider.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.chen.test.cloudprovider.service.HelloService;

@RestController
@RequestMapping("/hello")
public class HelloController {

 @Autowired
 private HelloService helloService;
 @GetMapping("/getHello")
 public String getHello(){

  return helloService.getHello();
 }
}
package com.chen.test.cloudprovider.service;

public interface HelloService {

 String getHello();
}
package com.chen.test.cloudprovider.service.impl;

import com.chen.test.cloudprovider.service.HelloService;
import org.springframework.stereotype.Service;

@Service
public class HelloServiceImpl implements HelloService {

 @Override
 public String getHello() {
  return "你好兄弟";
 }
}

 

(2)測(cè)試

在這里插入圖片描述

(3)在cloud-client中創(chuàng)建controller包和service包

package com.chen.demo.cloudclient.controller;

import com.chen.demo.cloudclient.service.HelloService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;

@RestController
@RequestMapping("/Hello")
public class HelloClient {

 @Autowired
 private HelloService helloService;

 @GetMapping("/getClient")
 public String getClient(){
  return helloService.getProduct();
 }
}
package com.chen.demo.cloudclient.service;


import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;

//name 為product項(xiàng)目中application.yml配置文件中的application.name;
//path 為product項(xiàng)目中application.yml配置文件中的context.path;
@FeignClient(name = "cloud-provider",path ="/hello" )
//@Componet注解最好加上,不加idea會(huì)顯示有錯(cuò)誤,但是不影響系統(tǒng)運(yùn)行;
@Component
public interface HelloService {

 @RequestMapping(value = "getHello")
 String getProduct();
}

特別注意
在啟動(dòng)類加上注解@EnableFeignClients

package com.chen.demo.cloudclient;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class CloudClientApplication {

 public static void main(String[] args) {
  SpringApplication.run(CloudClientApplication.class, args);
 }

}

(4)測(cè)試

在這里插入圖片描述

到此這篇關(guān)于使用Idea簡(jiǎn)單快速搭建springcloud項(xiàng)目的圖文教程的文章就介紹到這了,更多相關(guān)idea搭建springcloud項(xiàng)目?jī)?nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 連續(xù)調(diào)用多個(gè)外部系統(tǒng)寫(xiě)接口保證數(shù)據(jù)一致性的思路

    連續(xù)調(diào)用多個(gè)外部系統(tǒng)寫(xiě)接口保證數(shù)據(jù)一致性的思路

    今天小編就為大家分享一篇關(guān)于連續(xù)調(diào)用多個(gè)外部系統(tǒng)寫(xiě)接口保證數(shù)據(jù)一致性的思路,小編覺(jué)得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來(lái)看看吧
    2018-12-12
  • Java 二叉樹(shù)遍歷特別篇之Morris遍歷

    Java 二叉樹(shù)遍歷特別篇之Morris遍歷

    二叉樹(shù)的遍歷(traversing binary tree)是指從根結(jié)點(diǎn)出發(fā),按照某種次序依次訪問(wèn)二叉樹(shù)中所有的結(jié)點(diǎn),使得每個(gè)結(jié)點(diǎn)被訪問(wèn)依次且僅被訪問(wèn)一次。四種遍歷方式分別為:先序遍歷、中序遍歷、后序遍歷、層序遍歷
    2021-11-11
  • SpringCloud Eureka搭建的方法步驟

    SpringCloud Eureka搭建的方法步驟

    這篇文章主要介紹了SpringCloud Eureka搭建的方法步驟,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-01-01
  • Java Synchronized的偏向鎖詳細(xì)分析

    Java Synchronized的偏向鎖詳細(xì)分析

    synchronized作為Java程序員最常用同步工具,很多人卻對(duì)它的用法和實(shí)現(xiàn)原理一知半解,以至于還有不少人認(rèn)為synchronized是重量級(jí)鎖,性能較差,盡量少用。但不可否認(rèn)的是synchronized依然是并發(fā)首選工具,本文就來(lái)詳細(xì)講講
    2023-04-04
  • 詳解IDEA 啟動(dòng)tomcat 端口占用原因以及解決方法( 使用debug模式)

    詳解IDEA 啟動(dòng)tomcat 端口占用原因以及解決方法( 使用debug模式)

    這篇文章主要介紹了詳解IDEA 啟動(dòng)tomcat 端口占用原因以及解決方法( 使用debug模式) ,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-08-08
  • SrpingDruid數(shù)據(jù)源加密數(shù)據(jù)庫(kù)密碼的示例代碼

    SrpingDruid數(shù)據(jù)源加密數(shù)據(jù)庫(kù)密碼的示例代碼

    本篇文章主要介紹了SrpingDruid數(shù)據(jù)源加密數(shù)據(jù)庫(kù)密碼的示例代碼,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2017-10-10
  • 解決Springboot項(xiàng)目中很多頁(yè)面出現(xiàn)Whitelabel Error Page(404)的問(wèn)題

    解決Springboot項(xiàng)目中很多頁(yè)面出現(xiàn)Whitelabel Error Page(404)的問(wèn)題

    最近在接手的前后端項(xiàng)目中發(fā)現(xiàn)其默認(rèn)路徑不是主機(jī)+端口(如:http://localhost:3453/)的形式,很多頁(yè)面的訪問(wèn)是加了一個(gè)層級(jí),只要訪問(wèn)頁(yè)面就會(huì)出現(xiàn)Whitelabel Error Page(404),所以本文給大家提供了解決方案,需要的朋友可以參考下
    2024-02-02
  • Java設(shè)計(jì)模式之工廠方法模式詳解

    Java設(shè)計(jì)模式之工廠方法模式詳解

    工廠方法模式(FACTORY METHOD)是一種常用的類創(chuàng)建型設(shè)計(jì)模式,此模式的核心精神是封裝類中變化的部分,提取其中個(gè)性化善變的部分為獨(dú)立類,通過(guò)依賴注入以達(dá)到解耦、復(fù)用和方便后期維護(hù)拓展的目的。它的核心結(jié)構(gòu)有四個(gè)角色,分別是抽象工廠、具體工廠、抽象產(chǎn)品、具體產(chǎn)品
    2022-08-08
  • 詳解Java中Collections.sort排序

    詳解Java中Collections.sort排序

    Comparator是個(gè)接口,可重寫(xiě)compare()及equals()這兩個(gè)方法,接下來(lái)通過(guò)本文給大家介紹Java中Collections.sort排序,需要的的朋友參考下吧
    2017-04-04
  • java DataInputStream和DataOutputStream詳解及實(shí)例代碼

    java DataInputStream和DataOutputStream詳解及實(shí)例代碼

    這篇文章主要介紹了java DataInputStream和DataOutputStream詳解及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下
    2017-01-01

最新評(píng)論