(三)微服务消费者订单Module模块

目录

(三)微服务消费者订单Module模块

建cloud-consumer-order80

改POM

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <version>2.2.6.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
        <version>2.2.6.RELEASE</version>
    </dependency>
    <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>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

写YML

(三)微服务消费者订单Module模块

主启动

(三)微服务消费者订单Module模块

业务类

客户端消费者80 要调 微服务提供者8001,客户端应该只有controller。

entity

先去复制实体类,后面会抽取。
(三)微服务消费者订单Module模块

Resttemplate

是什么

(三)微服务消费者订单Module模块

官方使用

https://docs.spring.io/spring-framework/docs/5.2.2.RELEASE/javadoc-api/org/springframework/web/client/RestTemplate.html
(三)微服务消费者订单Module模块

config配置类

ApplicationContextConfig
(三)微服务消费者订单Module模块

controller

测试

启动两个服务
(三)微服务消费者订单Module模块

http://localhost/consumer/payment/get/2

(三)微服务消费者订单Module模块

不要忘记@RequestBody注解

输入:http://localhost/consumer/payment/create?serial=111
浏览器显示插入成功
(三)微服务消费者订单Module模块

但是数据库有主键,serial为null
(三)微服务消费者订单Module模块

原因:
没有加@RequestBody注解
(三)微服务消费者订单Module模块

上一篇:okhttp3 上传文件


下一篇:@RequestBody用法