摘要:普通类Test要注入**service、**mapper,在此类上加注解 @Component,此注解的作用是将该类被springboot扫描 注意::: 注意::: 注意::: 这个Test类在别处引用,千万不要直接new Test(),否则不会自动注入**service、**mapper 如果想
阅读全文
摘要://""自定义 String str = ""; JSONObject object = JSONObject.fromObject(str);Map<String, Object> conditionMap = new HashMap<String, Object>();Iterator<Stri
阅读全文
摘要:字符串:String str = "1,2,3,4,5,"; 目标:去掉最后一个逗号","; 方法:if(str.length() > 1){ str = str.substring(0, str.length() - 1)); }
阅读全文
摘要:使用stream流判断list中对象的某个字段是否有重复值 思路: 先获取指定字段的列表,再进行去重,再获取列表数量,最后和原列表比较长度 代码: long num = list.stream().map(User::getName).distinct().count();if (num < lis
阅读全文
摘要:拉取代码命令: git clone 地址/***.git 提交代码命令: git commit -m "**"(**为提交备注) 上传代码命令: # 上传到主分支git push -u origin master 将目前文件夹下所有的文件添加至暂存区命令: git add . 查看暂存区命令: gi
阅读全文