会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lick
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
27
下一页
2020年9月4日
java8 list 删除元素 简单版
摘要: import org.assertj.core.util.Lists; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.stream.Collectors;
阅读全文
posted @ 2020-09-04 11:37 lick
阅读(6121)
评论(0)
推荐(0)
2020年9月3日
java8 list 删除元素 结构复杂版
摘要: 实体类 School.java package com.company.domain; import java.util.List; /** * @author :lichuankang * @date :2020/9/3 11:02 * @description :学校 */ public cla
阅读全文
posted @ 2020-09-03 13:52 lick
阅读(3637)
评论(2)
推荐(0)
2020年8月10日
xshell 连接 centos 中的 vi 配色
摘要: xshell 中vi编辑的注释颜色设置,需要修改centos中的vi才行。 1. vi /etc/vimrc colorscheme murphy set number 2. vi /etc/bashrc alias vi='vim' source /ext/bashrc
阅读全文
posted @ 2020-08-10 13:53 lick
阅读(243)
评论(0)
推荐(0)
2020年8月9日
Redis 运行出错
摘要: 错误原因 Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR Error running script (call to f_000ccc143c5f9064b487e
阅读全文
posted @ 2020-08-09 11:05 lick
阅读(6842)
评论(0)
推荐(0)
2020年7月21日
git 使用小结
摘要: 1.版本回退(版本回退需要注意,尤其是多人协作的分支) 1.1 先使用git log 找到commitID ,一般commitID是数字加字母的组合。 1.2 再使用git reset --hard 要回退的commitID 1.3 强制推送到远程分支 git log git reset --har
阅读全文
posted @ 2020-07-21 17:17 lick
阅读(131)
评论(0)
推荐(0)
2020年7月19日
git 常用命令
摘要: 1.从远程克隆到本地 链接支持两种协议,git协议和https协议,推荐使用git地址,下载速度更快。 git clone 链接地址 2.创建新的分支 ## -b 表示创建并切换 ,下面这条命令相当于创建20200719_function_addUser 这个分支并切换到这个分支。 git chec
阅读全文
posted @ 2020-07-19 14:55 lick
阅读(144)
评论(0)
推荐(0)
git 配置ssh
摘要: 安装git,除了安装路径选择一个C盘之外的盘符,其余的默认就行。 1.空白处右键,选择git Bash here,输入下面的命令 设置user的name和email git config --global user.name "lick" git config --global user.email
阅读全文
posted @ 2020-07-19 14:35 lick
阅读(253)
评论(0)
推荐(0)
2020年7月14日
java 基础 之int
摘要: int a; System.out.println(a=23); ##输出结果: 23 ##分析 : 先将23赋值给a,然后输出a的值
阅读全文
posted @ 2020-07-14 11:32 lick
阅读(252)
评论(0)
推荐(0)
2020年7月13日
IDEA 寻找方法的完整路径
摘要: Ctrl + shift + alt + 按键C
阅读全文
posted @ 2020-07-13 11:33 lick
阅读(1820)
评论(0)
推荐(0)
2020年6月18日
rabbitmq 启动报错
摘要: 启动报错如下 ./rabbitmq-server: line 47: erl: command not found 解决方案1 :在rabbitmq-server 中添加erlang的环境变量 # Lazy initialization of threed pool size - if it was
阅读全文
posted @ 2020-06-18 19:44 lick
阅读(1184)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
27
下一页
公告