网站首页 站内搜索

搜索结果

查询Tags标签: RabbIT,共有 23条记录
  • 16. 微服务综合案例4 exception rabbit sql 注解 测试 (2刷)

    1. common项目 fastjosn<dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>1.2.31</version></dependency>注解 注解的定义 @Target(ElementType.METHOD) //用在方法上 @Retention(…

    2021/8/25 19:09:00 人评论 次浏览
  • 16. 微服务综合案例4 exception rabbit sql 注解 测试 (2刷)

    1. common项目 fastjosn<dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>1.2.31</version></dependency>注解 注解的定义 @Target(ElementType.METHOD) //用在方法上 @Retention(…

    2021/8/25 19:09:00 人评论 次浏览
  • 【Virtual Judge】The 2019 China Collegiate Programming Contest Harbin Site-Keeping Rabbits

    Keeping Rabbits DreamGrid is the keeper of n rabbits. Initially, the i-th (1≤i≤n) rabbit has a weight of wi. Every morning, DreamGrid gives the rabbits a carrot of weight 1 and the rabbits fight for the only carrot. Only one rabbit wins the fight an…

    2021/6/17 18:59:13 人评论 次浏览
  • JavaScript类

    https://zh.javascript.info/class-inheritance#homeobject 以下是babel编译过的继承,记录 "use strict";function _inherits(subClass, superClass) {if (typeof superClass !== "function" && superClass !== null) {throw new TypeError(…

    2021/5/24 20:56:00 人评论 次浏览
  • docker 启动rabbitmq

    docker 启动rabbitmq rabbitmq官方推荐的启动方式是通过docker进行启动。因为不用安装Erlang语音等环境 rabbitmq官网:https://www.rabbitmq.com/download.html 启动命令 单节点启动 docker run -it --rm -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-man…

    2021/5/22 10:28:06 人评论 次浏览
  • OpenStack错误:Error: unable to connect to node rabbit@localhost: nodedown

    OpenStack错误:Error: unable to connect to node rabbit@localhost: nodedown 问题来源:rabbitmq添加用户失败思考原因1、翻译一下2、解释3、su 和 su - 的区别4、简单解释问题 总结问题来源:rabbitmq添加用户失败 [root@ct ~]# rabbitmqctl add_user openstack RABBI…

    2021/5/19 20:59:54 人评论 次浏览
  • springboot连接rabbit

    rabbitMQ连接springboot (1)父工程引入相关的依赖 <?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:schema…

    2021/5/6 10:29:46 人评论 次浏览
  • Python----递归函数

    # 兔子问题: # 1 1 2 3 5 7 12 # 第一天1只兔子 第二天1只兔子 第三天2只兔子 第四天3只兔子 后面每天的兔子数等于前2天的兔子数之和# 定义函数,计算第n天的兔子数 def rabbit(n):# 递归结束的条件:n=2# 第一天和第二天兔子数都是1if n == 1 or n == 2:return 1…

    2021/5/2 20:27:23 人评论 次浏览
共23记录«上一页12下一页»
扫一扫关注最新编程教程