码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-04-27 13:40:54      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:复制   业务   code   cloud   pen   抽取   framework   href   run   

技术图片

建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

技术图片

主启动

技术图片

业务类

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

entity

先去复制实体类,后面会抽取。
技术图片

Resttemplate

是什么

技术图片

官方使用

https://docs.spring.io/spring-framework/docs/5.2.2.RELEASE/javadoc-api/org/springframework/web/client/RestTemplate.html
技术图片

config配置类

ApplicationContextConfig
技术图片

controller

测试

启动两个服务
技术图片

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

技术图片

不要忘记@RequestBody注解

输入:http://localhost/consumer/payment/create?serial=111
浏览器显示插入成功
技术图片

但是数据库有主键,serial为null
技术图片

原因:
没有加@RequestBody注解
技术图片

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

标签:复制   业务   code   cloud   pen   抽取   framework   href   run   

原文地址:https://www.cnblogs.com/sunyanblog/p/12785706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!