摘要:
实现规则 1、 一个人去买酒 2、 如果年龄大于18岁,则是成年人;小于18岁是未成年人 3、 如果未成年人去买酒,拒绝 步骤一: 导入依赖 <dependency> <groupId>org.jeasy</groupId> <artifactId>easy-rules-core</artifact 阅读全文
摘要:
思路: 1、 在配置类中通过 SimpleMessageListenerContainer 配置监听消息队列的各种参数 2、 自定义一个类实现 ChannelAwareMessageListener 接口 配置类 package com.example.testgetmq.config; impor 阅读全文
摘要:
查找出所有的端口号 netstat -ano 根据端口号记住对应的pid,杀掉pid taskkill /pid 6052 -f 阅读全文
摘要:
** 原因:本地缓存不存在该插件的版本 ** 检查路径: C:\Users\ASUS.m2\repository\org\apache\maven\plugins\maven-compiler-plugin ** 如果有,就重启项目。没有对应的话,就把本地缓存的版本输入进去 阅读全文
摘要:
启动MySQL服务 service mysql start 查看MySQL状态 service mysql status 关闭MySQL服务 service mysql stop 阅读全文
摘要:
查看某个端口号是否打开 netstat -ntpl | grep 端口号 查看某个端口号是否被使用 lsof -i:端口号 查看mysql是否在运行 ps aux|grep mysql 阅读全文
摘要:
错误: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disa 阅读全文
摘要:
在阿里云服务器上装一个宝塔面板,我的服务器上装的ubuntu。阿里社区好像只有centos的案例,所以这里记录一下备用。 一、先用个ssh工具连上服务器 我的mac用的是finalshell 二、命令行安装宝塔 wget -O install.sh http://download.bt.cn/ins 阅读全文
摘要:
通过springboot整合RabbitMQ可以极大的简化MQ使用步骤 以下是生产者和消费者两个工程的基本实现步骤 生产者工程: application.yml文件配置RabbitMQ相关信息; 在生产者工程中编写配置类,用于创建交换机和队列,并进行绑定 注入RabbitTemplate对象,通过R 阅读全文
摘要:
实现一个生产者 package com.mq.mqproducer; import com.rabbitmq.client.BuiltinExchangeType; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Conn 阅读全文