天天看点

详解Spring Cloud(后端通用服务client)三

创建步骤

1、在详解Spring Cloud(服务注册发现)二.项目中以spring cloud作为父级工程,spring-client作为子工程,spring-cloud-client-product-1也作为子工程依赖spring-client。不会聚合工程的请看创建工程步骤.

2、创建启动类Product1Application,该类主要有两个注解@SpringBootApplication和@EnableDiscoveryClient,@EnableDiscoveryClient主要是启动client服务。这个注解要与服务注册发现的@EnableEurekaServer注解区分开来。

3、创建类HelloController用于测试是否成功(文末给源码)。

4、写application.yml文件(文末给源码)。

5、启动完三个服务注册spring-service-1,spring-service-2,spring-service-3后,再启动spring-cloud-client-product-1工程

6、访问端口 http://localhost:8761发现spring-cloud-client-product-1已经注册成功

7、访问 http://localhost:8081/hello 能正常显示"success product-1"表示client服务成功。

至此client服务基本流程完成。

源码

项目结构图

详解Spring Cloud(后端通用服务client)三

1、spring-client的pom.xml文件

<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>net.seehope</groupId>
  <artifactId>spring-cloud</artifactId>
  <version>${project.version}</version>
 </parent>
 <artifactId>spring-client</artifactId>
 <!-- springboot工程中,大部分的工程的jar包的版本号已经由父工程定义好了 除非明确的知道需要覆盖复工程的配置,不然不要轻易地修改子工程中的版本 -->
 <dependencies>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis -->
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-data-redis</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-configuration-processor</artifactId>
   <optional>true</optional>
  </dependency>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-jta-narayana</artifactId>
  </dependency>
  <!-- 开发工具 -->
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
  </dependency>
  <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  <dependency>
   <groupId>org.mybatis.spring.boot</groupId>
   <artifactId>mybatis-spring-boot-starter</artifactId>
   <version>2.1.3</version>
  </dependency>
  <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  <dependency>
   <groupId>mysql</groupId>
   <artifactId>mysql-connector-java</artifactId>
  </dependency>
  <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
  <dependency>
   <groupId>com.alibaba</groupId>
   <artifactId>druid-spring-boot-starter</artifactId>
   <version>1.2.3</version>
  </dependency>
  <!-- https://mvnrepository.com/artifact/tk.mybatis/mapper-spring-boot-starter -->
  <dependency>
   <groupId>tk.mybatis</groupId>
   <artifactId>mapper-spring-boot-starter</artifactId>
   <version>2.1.5</version>
  </dependency>
  <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
  <dependency>
   <groupId>com.github.pagehelper</groupId>
   <artifactId>pagehelper-spring-boot-starter</artifactId>
   <version>1.3.0</version>
  </dependency>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
   <scope>test</scope>
   <exclusions>
    <exclusion>
     <groupId>org.junit.vintage</groupId>
     <artifactId>junit-vintage-engine</artifactId>
    </exclusion>
   </exclusions>
  </dependency>
  <!-- 自动文档插件 -->
  <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  <dependency>
   <groupId>io.springfox</groupId>
   <artifactId>springfox-swagger2</artifactId>
   <version>2.9.2</version>
  </dependency>
  <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
  <dependency>
   <groupId>io.springfox</groupId>
   <artifactId>springfox-swagger-ui</artifactId>
   <version>2.9.2</version>
  </dependency>
  <!-- 工具包 -->
  <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-lang3</artifactId>
  </dependency>
  <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-collections4</artifactId>
   <version>4.3</version>
  </dependency>
  <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
  <dependency>
   <groupId>commons-beanutils</groupId>
   <artifactId>commons-beanutils</artifactId>
   <version>1.9.4</version>
  </dependency>
  <!-- 切面依赖 -->
  <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
  <dependency>
   <groupId>org.aspectj</groupId>
   <artifactId>aspectjrt</artifactId>
  </dependency>
  <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
  <dependency>
   <groupId>org.aspectj</groupId>
   <artifactId>aspectjweaver</artifactId>
   <scope>runtime</scope>
  </dependency>
  <!-- jackson -->
  <dependency>
   <groupId>com.fasterxml.jackson.core</groupId>
   <artifactId>jackson-annotations</artifactId>
  </dependency>
  <dependency>
   <groupId>com.fasterxml.jackson.core</groupId>
   <artifactId>jackson-databind</artifactId>
  </dependency>
  <dependency>
   <groupId>com.fasterxml.jackson.core</groupId>
   <artifactId>jackson-core</artifactId>
  </dependency>
  <dependency>
   <groupId>com.fasterxml.jackson.datatype</groupId>
   <artifactId>jackson-datatype-jsr310</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  </dependency>
 </dependencies>
</project>
           

2、spring-cloud-client-product-1的pom.xml文件

<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>net.seehope</groupId>
    <artifactId>spring-cloud</artifactId>
    <version>${project.version}</version>
  </parent>
  <artifactId>spring-cloud-client-product-1</artifactId>
  <!-- 依赖spring-client -->
   <dependencies>
   <dependency>
    <groupId>net.seehope</groupId>
    <artifactId>spring-client</artifactId>
    <version>${project.version}</version>
   </dependency>
  </dependencies>
</project>
           

3、启动类Product1Application

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@SpringBootApplication
@EnableDiscoveryClient
public class Product1Application {
 public static void main(String[] args) throws Exception {
  SpringApplication.run(Product1Application.class, args);
 }
}
           

4、HelloController类

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/hello")
public class HelloController {
 @GetMapping
 public String hello() {
  return "success product-1";
 }
}
           

2、

继续阅读