目录

一、案例:根据id查询订单功能

1.1  数据库信息

 步骤一:注册RestTemplate

  步骤二:服务远程调用RestTemplate


一、案例:根据id查询订单功能

需求:根据订单id查询订单的同时,把订单所属的用户信息一起返回

1.1  数据库信息

    我们从下面图中很容易发现,我们是在两个数据库中的两个表,如果我们还是用我们之前的方式查询,根本不可能做到同时查询不同数据库中的两个表

cloud_user中的tb_user表(用户信息表)

 cloud_order中的tb_order表(订单表)user表

 

 步骤一:注册RestTemplate

带有@SpringBootApplication注解的本身就是配置类,所以我们可以在下面这个文件下进行注册

@MapperScan("cn.itcast.order.mapper")
@SpringBootApplication
public class OrderApplication {

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

    @Bean
    public RestTemplate restTemplate(){
        return new RestTemplate();
    }

}

 

  步骤二:服务远程调用RestTemplate

对订单OrderService查询业务进行修改

@Data
public class Order {
    private Long id;
    private Long price;
    private String name;
    private Integer num;
    private Long userId;
    private User user;
}
@Data
public class User {
    private Long id;
    private String username;
    private String address;
}
@Service
public class OrderService {

    @Autowired
    private OrderMapper orderMapper;
    @Autowired
    private RestTemplate restTemplate;

    public Order queryOrderById(Long orderId) {
        // 1.查询订单
        Order order = orderMapper.findById(orderId);
        // 2.利用RestTemplate发起http请求,查询用户
        //    2.1 url路径
        String url="http://localhost:8081/user/"+order.getUserId();
        //    2.2 发送http请求,实现远程调用
        //     这个地方非常的智能,这个地方会问你要一个返回值的类型,其实是返回的JSON,但是如果我们给了一个User类型的话
        //     它会把JSON数据反序列化成User类型,这样我们就得到了一个User对象
         User user = restTemplate.getForObject(url, User.class);
        // 3.封装user到Order
        order.setUser(user);
        // 4.返回
        return order;
    }
}

 

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐