ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Spring Cloud 二 之父工程的创建

2021-01-19 22:31:20  阅读:160  来源: 互联网

标签:spring Spring boot payment cloud 创建 org public Cloud


Spring Cloud 二 之父工程的创建

1 创建父工程Project

  • 1.New Project

  • 2.聚合总父工程名字 (cloud020)

  • 3.Maven选版本 (3.5及以上)

  • 4.工程名字 (cloud020)

  • 5.字符编码
    在这里插入图片描述

  • 6.注解生效激活
    在这里插入图片描述

  • 7.java编译版本选8
    在这里插入图片描述

  • 8.File Type过滤
    在这里插入图片描述在这里插入图片描述

1.1 父工程的POM文件

1.1.1 完整pom文件

<?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>

  <groupId>com.atguigu.springcloud</groupId>
  <artifactId>clou2020</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>pom</packaging>

  <name>Maven</name>
  <!-- FIXME change it to the project's website -->
  <url>http://maven.apache.org/</url>
  <inceptionYear>2001</inceptionYear>

  <distributionManagement>
    <site>
      <id>website</id>
      <url>scp://webhost.company.com/www/website</url>
    </site>
  </distributionManagement>

  <!-- 统一管理jar包版本 -->
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <junit.version>4.12</junit.version>
    <log4j.version>1.2.17</log4j.version>
    <lombok.version>1.16.18</lombok.version>
    <mysql.version>5.1.47</mysql.version>
    <druid.version>1.1.16</druid.version>
    <mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version>
  </properties>

  <!-- 子模块继承之后,提供作用:锁定版本+子modlue不用写groupId和version  -->
  <dependencyManagement>
    <dependencies>
      <!--spring boot 2.2.2-->
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies</artifactId>
        <version>2.2.2.RELEASE</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <!--spring cloud Hoxton.SR1-->
      <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-dependencies</artifactId>
        <version>Hoxton.SR1</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <!--spring cloud alibaba 2.1.0.RELEASE-->
      <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-alibaba-dependencies</artifactId>
        <version>2.1.0.RELEASE</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>${mysql.version}</version>
      </dependency>
      <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>druid</artifactId>
        <version>${druid.version}</version>
      </dependency>
      <dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>${mybatis.spring.boot.version}</version>
      </dependency>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${junit.version}</version>
      </dependency>
      <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>${log4j.version}</version>
      </dependency>
      <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>${lombok.version}</version>
        <optional>true</optional>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
          <fork>true</fork>
          <addResources>true</addResources>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

1.1.2 dependencyManagement和dependencies

Maven在使用dependencyManagement元素来提供了一种管理依赖版本号的的方式,通常会在一个组织或者一个项目的最顶层的父pom文件中看到dependencyManagement。

使用pom文件中的dependencyManagement元素能让所有在子项目中引用搞一个依赖而不显式的列出版本号。Maven会沿着父子层次向上走,知道找到一个拥有dependencyManagement元素的项目,然后他就会使用dependencyManagement元素中指定的版本号。然后在子项目里可以不指定版本号。

这样做的好处就是: 如果有多个子项目都引用同一样的依赖,则可以避免在每个使用的子项目里都声明一个版本号,这样想升级或切换到另一个版本时,只需在顶层父容器里更新,而不需要一个一个子项目的修改l;另外如果某个子项目需要另外的一个版本,只需声明version版本 。

dependencyManagement里只是声明依赖,并不实现引入,因此子项目需要显示的声明需要的依赖。

如果不在子项目中声明依赖,是不会从父项目中继承下来的;只有在子项目中写了该依赖项,并且没有指定具体版本,才会从父项目中继承该项,并且version和scope都读取自父pom;

如果子项目中指定了版本号,那么会使用子项目中指定的jar版本。

1.1.3 maven如何跳过单元测试

在这里插入图片描述

2 支付模块的构建

在这里插入图片描述
完整模块目录:
在这里插入图片描述

2.1 Cloud-provider-payment8001 微服务提供者Module模块

  1. 建module (Cloud-provider-payment8001)
  2. 改pom文件
    完整pom文件:
    <?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">
        <parent>
            <artifactId>clou2020</artifactId>
            <groupId>com.atguigu.springcloud</groupId>
            <version>1.0-SNAPSHOT</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>cloud-provider-payment8001</artifactId>
    
        <dependencies>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-actuator</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
            <dependency>
                <groupId>org.mybatis.spring.boot</groupId>
                <artifactId>mybatis-spring-boot-starter</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
            <dependency>
                <groupId>com.alibaba</groupId>
                <artifactId>druid-spring-boot-starter</artifactId>
                <version>1.1.10</version>
            </dependency>        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jdbc -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-jdbc</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <scope>runtime</scope>
                <optional>true</optional>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <optional>true</optional>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
        </dependencies>
    
        <properties>
            <maven.compiler.source>8</maven.compiler.source>
            <maven.compiler.target>8</maven.compiler.target>
        </properties>
    
    </project>
    
  3. 写yaml文件
    新建application.yml :
    server:
      port: 8001
    
    spring:
      application:
        name: cloud-payment-service
      datasource:
        type: com.alibaba.druid.pool.DruidDataSource
        driver-class-name: org.gjt.mm.mysql.Driver
        url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=utf-8&useSSL=false
        username: root
        password: root
    
    mybatis:
      mapperLocations: classpath:mapper/*.xml
      type-aliases-package: com.atguigu.springcloud.entities
    
  4. 主启动类PaymentMain8001
    @SpringBootApplication
    public class PaymentMain8001 {
        public static void main(String[] args) {
            SpringApplication.run(PaymentMain8001.class, args);
        }
    }
    
  5. 业务类
    • 建表语句

      	-- ----------------------------
      -- Table structure for `payment`
      -- ----------------------------
      DROP TABLE IF EXISTS `payment`;
      CREATE TABLE `payment` (
        `id` bigint(20) NOT NULL AUTO_INCREMENT,
        `serial` varchar(20) DEFAULT NULL,
        PRIMARY KEY (`id`)
      ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
      
      -- ----------------------------
      -- Records of payment
      -- ----------------------------
      INSERT INTO `payment` VALUES ('1', 'haha');
      
    • 实体类Payment

      @Data
      @NoArgsConstructor
      @AllArgsConstructor
      public class Payment {
          private Long id;
          private String serial;
      }
      
    • 实体类CommonResult

      @Data
      @NoArgsConstructor
      @AllArgsConstructor
      public class CommonResult <T>{
          private Integer code;
          private String message;
          private T data;
      
          public CommonResult(Integer code, String message) {
              this(code, message, null);
          }
      }
      
    • PaymentDao接口

      @Mapper
      public interface PaymentDao {
          public int create(Payment payment);
      
          public Payment getPaymentById(@Param("id") Long id);
      }
      
    • PaymentMapper.xml
      在resource目录下建mapper文件夹,再建PaymentMapper.xml

      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
      <mapper namespace="com.atguigu.springcloud.dao.PaymentDao">
          <insert id="create" parameterType="Payment" useGeneratedKeys="true" keyProperty="id">
              insert into payment(serial) values (#{serial})
          </insert>
      
          <resultMap id="BaseResultMap" type="com.atguigu.springcloud.entities.Payment">
              <id column="id" property="id" jdbcType="BIGINT"></id>
              <id column="serial" property="serial" jdbcType="VARCHAR"></id>
          </resultMap>
          <select id="getPaymentById" parameterType="Long" resultMap="BaseResultMap">
              select *
              from payment where id=#{id};
          </select>
      </mapper>
      
    • PaymentService接口

      public interface PaymentService {
          public int create(Payment payment);
      
          public Payment getPaymentById(@Param("id") Long id);
      }
      
    • PaymentServiceImpl

      @Service
      public class PaymentServiceImpl implements PaymentService {
      
          @Resource
          private PaymentDao paymentDao;
      
          @Override
          public int create(Payment payment) {
              return paymentDao.create(payment);
          }
      
          @Override
          public Payment getPaymentById(Long id) {
              return paymentDao.getPaymentById(id);
          }
      }
      
    • PaymentController

      @RestController
      @Slf4j
      public class PaymentController {
      
          @Resource
          private PaymentService paymentService;
      
          @PostMapping(value = "/payment/create")
          public CommonResult create(Payment payment) {
              int result = paymentService.create(payment);
              log.info("*****插入结果*****" + result);
      
              if(result > 0) {
                  return new CommonResult(200, "插入数据成功", result);
              } else {
                  return new CommonResult(444, "插入数据失败", null);
              }
          }
      
          @GetMapping(value = "/payment/get/{id}")
          public CommonResult getPaymentById(@PathVariable("id") Long id) {
              Payment payment = paymentService.getPaymentById(id);
              log.info("*****插入结果*****" + payment);
              if(payment != null) {
                  return new CommonResult(200, "查询成功", payment);
              } else {
                  return new CommonResult(444, "没有对应记录", null);
              }
          }
      
      }
      
  6. 测试
    启动springboot:
    在这里插入图片描述
    使用postman测试插入:
    在这里插入图片描述
  7. Devtools热部署
    • 子module pom中添加
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-devtools</artifactId>
          <scope>runtime</scope>
          <optional>true</optional>
      	</dependency>        <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
      
    • 将下面的的配置添加到父工程的pom文件里
      <build>
          <plugins>
            <plugin>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-maven-plugin</artifactId>
              <configuration>
                <fork>true</fork>
                <addResources>true</addResources>
              </configuration>
            </plugin>
          </plugins>
        </build>
      
    • idea配置
      在这里插入图片描述
      ctrl+alt+shift+/
      在这里插入图片描述
      在这里插入图片描述最后重启idea

3 消费模块的构建

完整模块目录:
在这里插入图片描述

3.1cloud-consumer-order80 微服务消费者订单Module模块

  1. 建模块cloud-consumer-order80

  2. pom文件

    <?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">
        <parent>
            <artifactId>clou2020</artifactId>
            <groupId>com.atguigu.springcloud</groupId>
            <version>1.0-SNAPSHOT</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>cloud-consumer-order80</artifactId>
    
        <dependencies>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web  -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-actuator</artifactId>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <scope>runtime</scope>
                <optional>true</optional>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <optional>true</optional>
            </dependency>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
        </dependencies>
    
        <properties>
            <maven.compiler.source>8</maven.compiler.source>
            <maven.compiler.target>8</maven.compiler.target>
        </properties>
    
    </project>
    
  3. yml文件

    server:
      port: 80
    
  4. 主启动类OrderMain80

    @SpringBootApplication
    public class OrderMain80 {
        public static void main(String[] args) {
            SpringApplication.run(OrderMain80.class, args);
        }
    }
    
  5. 业务类

    1. Payment和CommonResult实体类复用cloud-provide-payment8001模块的
    2. RestTemplate简介
      RestTemplate提供了多种便捷访问远程Http服务的方法,
      是一种简单便捷的访问restful服务模板类,是Spring提供的用于访问Rest服务的客户端模板工具集
      使用restTemplate访问restful接口非常的简单粗暴无脑。(url, requestMap, 
      ResponseBean.class)这三个参数分别代表REST请求地址、请求参数、HTTP响应转换被转换成的对象类型。
      
    3. ApplicationContextConfig类
      @Configuration
      public class ApplicationContextConfig {
          @Bean
          public RestTemplate getRestTemplate() {
              return new RestTemplate();
          }
      }
      
    4. ConsumerController类
      @RestController
      @Slf4j
      public class ConsumerController {
      
          public static final String PAYMENT_URL = "http://localhost:8001";
      
          @Resource
          private RestTemplate restTemplate;
      
          @GetMapping("/consumer/payment/create")
          public CommonResult<Payment> create(Payment payment) {
              return restTemplate.postForObject(PAYMENT_URL + "/payment/create", payment, CommonResult.class);
          }
      
          @GetMapping("/consumer/payment/get/{id}")
          public CommonResult<Payment> getPayment(@PathVariable("id") Long id) {
              return restTemplate.getForObject(PAYMENT_URL + "/payment/get/" + id, CommonResult.class);
          }
      }
      
  6. 测试

    先启动cloud-provider-payment8001,再启动cloud-consumer-order80。
    在这里插入图片描述
    使用postman测试插入:

    在这里插入图片描述

    在这里插入图片描述
    postman返回插入成功,但是数据库中却没有数据,只住建,这是为什么呢?
    原因:我们在cloud-provider-payment8001create方法中在接收参数时没有使用 @RequestBody 注解
    在这里插入图片描述
    添加后就可以了。

  7. 配置RunDashboard

4 项目重构

构建原因:系统中有重复部分,比如实体类
完整模块目录:
在这里插入图片描述

  1. 新建cloud-api-commons模块
  2. pom文件
    <?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">
        <parent>
            <artifactId>clou2020</artifactId>
            <groupId>com.atguigu.springcloud</groupId>
            <version>1.0-SNAPSHOT</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>cloud-api-commons</artifactId>
    
        <dependencies>        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <scope>runtime</scope>
                <optional>true</optional>
            </dependency>
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <optional>true</optional>
            </dependency>        <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
            <dependency>
                <groupId>cn.hutool</groupId>
                <artifactId>hutool-all</artifactId>
                <version>5.1.0</version>
            </dependency>
        </dependencies>
    
        <properties>
            <maven.compiler.source>8</maven.compiler.source>
            <maven.compiler.target>8</maven.compiler.target>
        </properties>
    
    </project>
    
  3. 实体类entities包
    将cloud-provider-payment8001模块下的entities包复制过来
  4. 使用maven命令打包
    mvn clean
    mvn install
    
  5. 分别删除cloud-provider-payment8001模块和cloud-consumer-order80模块下的entities包,并分别在pom文件下添加如下配置:
    <dependency>
        <groupId>com.atguigu.springcloud</groupId>
        <artifactId>cloud-api-commons</artifactId>
        <version>${project.version}</version>
    </dependency>
    
  6. 启动测试 http://localhost/consumer/payment/get/1

标签:spring,Spring,boot,payment,cloud,创建,org,public,Cloud
来源: https://blog.csdn.net/weixin_44533129/article/details/112389317

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有