摘要: &lt; < &gt; > &lt;&gt; <>&amp; & &apos; '&quot; " =等于符号不变 is not null 不等于空 阅读全文
posted @ 2021-09-22 20:05 northli 阅读(190) 评论(0) 推荐(0)
摘要: 1.git提交命令 git push origin 本地分支:远程分支 2.通过命令行创建一个新的版本库 touch README.md git init git add README.md git commit -m "first commit" git remote add origin ssh 阅读全文
posted @ 2021-09-18 16:06 northli 阅读(138) 评论(0) 推荐(0)
摘要: static List<Menu> childMenu=new ArrayList<Menu>(); /** * 获取某个父节点下面的所有子节点 * @param menuList * @param pid * @return */ public static List<Menu> treeMenu 阅读全文
posted @ 2021-09-09 17:03 northli 阅读(3606) 评论(0) 推荐(1)
摘要: 工作勿强求,平常心就行,平常心追求的状态就是自己的梦想,没必要野心勃勃,拉仇恨,自己是个平常人,工作表现成平常人就行,工作不就是给别人干的么。 阅读全文
posted @ 2021-09-07 16:01 northli 阅读(166) 评论(0) 推荐(0)
摘要: 一、字符串转化为数组splitString str = "aaa,bbb,ccc";String[] str2 = str.split(",");System.out.println(str2[2]); 阅读全文
posted @ 2021-09-06 17:31 northli 阅读(166) 评论(0) 推荐(0)
摘要: 一、list复制 // 从数据库中查询出的对象集合 List<OperationStation> operationStations = operationStationJoinMapper.selectJoinByExample(example); // 判端是否为空 if (Collection 阅读全文
posted @ 2021-09-06 17:30 northli 阅读(803) 评论(0) 推荐(0)
摘要: 是敌是友得分清,清闲工作,认清人, 分清痛苦与快乐 阅读全文
posted @ 2021-09-06 10:08 northli 阅读(23) 评论(0) 推荐(0)
摘要: 1.maven:单击刷新 reimport all maven projects 2.maven:clean,install(casic和casic-admin都需要clean,install) 如果还是解决不了的话,那么就重新拉代码,加载maven,刷新maven就会自动加载好了。 阅读全文
posted @ 2021-09-03 10:01 northli 阅读(88) 评论(0) 推荐(0)
摘要: git打增量包 number1:开始提交的git revision number number2:结束提交的git revision number git archive -o /d/code/jssltj-20151001.zip HEAD $(git diff number1 number2 - 阅读全文
posted @ 2021-09-03 09:38 northli 阅读(422) 评论(0) 推荐(0)
摘要: CellStyle cellStyle_tmp = workbook.createCellStyle();cellStyle_tmp.setAlignment(HorizontalAlignment.RIGHT);cellStyle_tmp.setVerticalAlignment(Vertical 阅读全文
posted @ 2021-08-26 14:32 northli 阅读(505) 评论(0) 推荐(0)