摘要:
实体类 School.java package com.company.domain; import java.util.List; /** * @author :lichuankang * @date :2020/9/3 11:02 * @description :学校 */ public cla 阅读全文
摘要:
xshell 中vi编辑的注释颜色设置,需要修改centos中的vi才行。 1. vi /etc/vimrc colorscheme murphy set number 2. vi /etc/bashrc alias vi='vim' source /ext/bashrc 阅读全文
摘要:
错误原因 Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR Error running script (call to f_000ccc143c5f9064b487e 阅读全文
摘要:
1.版本回退(版本回退需要注意,尤其是多人协作的分支) 1.1 先使用git log 找到commitID ,一般commitID是数字加字母的组合。 1.2 再使用git reset --hard 要回退的commitID 1.3 强制推送到远程分支 git log git reset --har 阅读全文
摘要:
1.从远程克隆到本地 链接支持两种协议,git协议和https协议,推荐使用git地址,下载速度更快。 git clone 链接地址 2.创建新的分支 ## -b 表示创建并切换 ,下面这条命令相当于创建20200719_function_addUser 这个分支并切换到这个分支。 git chec 阅读全文
摘要:
安装git,除了安装路径选择一个C盘之外的盘符,其余的默认就行。 1.空白处右键,选择git Bash here,输入下面的命令 设置user的name和email git config --global user.name "lick" git config --global user.email 阅读全文
摘要:
int a; System.out.println(a=23); ##输出结果: 23 ##分析 : 先将23赋值给a,然后输出a的值 阅读全文
摘要:
Ctrl + shift + alt + 按键C 阅读全文
摘要:
启动报错如下 ./rabbitmq-server: line 47: erl: command not found 解决方案1 :在rabbitmq-server 中添加erlang的环境变量 # Lazy initialization of threed pool size - if it was 阅读全文
摘要:
1. 准备 erlang rabbitmq 安装包 erlang erlang下载官网 rabbitmq rabbitmq下载官网 2.复制到centos7上 可以使用xftp /usr/local/rabbitmq/ 3.开始安装 3.1 安装依赖 yum install ncurses-deve 阅读全文