摘要:
mybatis-plus: mapper-locations: classpath*:/com/cmtt/pas/**/mapper/*.xml pom修改 <build> <resources> <resource> <directory>${basedir}/src/main/java</dir 阅读全文
摘要:
1. 查看ntp服务命令: systemctl status ntpd 可以看到状态为:inactive,也就是没有启动ntp服务 2. 启动ntp服务命令并查看状态: systemctl start ntpd systemctl status ntpd 可以看到此时ntp状态为active,也就是 阅读全文
摘要:
nohup java -jar cmtt-biz-project.jar >cmtt-biz-project.log 查看日志:tail -200f xxx.log 阅读全文
摘要:
1.添加pom包 <dependency> <groupId>com.marcosbarbero.cloud</groupId> <artifactId>spring-cloud-zuul-ratelimit</artifactId> <version>2.0.6.RELEASE</version> 阅读全文
摘要:
1.官网下载git,安装本地 2.需要上传的文件夹右键,git bash here b、cd ~/.ssh/ 如果提示 “ No such file or directory”,你可以手动的创建一个 .ssh文件夹即可 mkdir ~/.ssh 生成key ssh-keygen -t rsa -C 阅读全文
摘要:
本教程将介绍如何使用 mybatis-plus 工具自动给我们生成 controller、service、entity、Dao、Mapper.xml 层代码 以及springboot2.3整合druid、,mybaits-plus且mybatis-plus自动生成代码 先导入pom <?xml ve 阅读全文
摘要:
MybatisPlus+Activiti6冲突导致mybatis plus包引入失败解决办法:将activiti中排除掉 <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-spring-boot-starter-bas 阅读全文
摘要:
CentOS7搭建Kafka单机环境及基础操作 前提 安装Kafka前需要先安装zookeeper集群 Kafka安装 解压 tar -zxvf kafka_2.8.0-0.8.0.tar.gz 修改配置 cd /usr/local/hadoop/kafka_2.8.0-0.8.0/config v 阅读全文
摘要:
首先说明:这里是单机版的伪集群搭建 第一步:下载zookeeper:zookeeper的下载地址: 1 http://mirror.bit.edu.cn/apache/zookeeper/ 第二步:安装:将下载的zookeeper上传到linux系统中,使用命令解压 1 tar -zxvf zook 阅读全文
摘要:
redis 5.0.5版本使用redis-cli –cluster来替代redis-trib.rb从而我们可以不需要安装Ruby环境,省略了Ruby环境的安装,redis集群环境的搭建就大大简化了。 由于redis集群从设计之初就采用去中心化的思想,所以每个集群节点地位都是相等的。而redis的容错 阅读全文