2021年2月3日

控制台报IPV6问题的解决

摘要: IPv6问题调试 Burp Suite是不支持IPv6地址进行数据通信的,这时在cmd控制台里就会抛出如下异常 java.net.SocketException: Permission denied 同时,浏览器访问时,也会出现异常 Burp proxy error: Permission deni 阅读全文

posted @ 2021-02-03 11:33 王半仙儿的博客 阅读(497) 评论(0) 推荐(0) 编辑

mybatis 批量更新

摘要: <update id="batchChangeOff" > <foreach collection="mussCustTemChange.entrySet()" item="value" index="key" separator=";"> UPDATE mass_custom_template s 阅读全文

posted @ 2021-02-03 09:23 王半仙儿的博客 阅读(63) 评论(0) 推荐(0) 编辑

2021年1月26日

Java核心编程-第一卷:基础知识

摘要: public static void main(String[] args) { BigInteger bigInteger1 = BigInteger.probablePrime(20, new Random()); Boolean aBoolean = Boolean.valueOf(1 << 阅读全文

posted @ 2021-01-26 17:41 王半仙儿的博客 阅读(132) 评论(0) 推荐(0) 编辑

2021年1月8日

double四舍五入保留两位小数的方法

摘要: 1,DecimalFormat DecimalFormat decimalFormat = new DecimalFormat(".00"); 意思就是规定保留几位小数 使用时 decimalFormat.format("這裡是個String"); 注:当前返回的是String 如需返回double 阅读全文

posted @ 2021-01-08 10:17 王半仙儿的博客 阅读(843) 评论(0) 推荐(1) 编辑

2021年1月5日

循环Map的几种方法

摘要: package cn.jdbc.test;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import java.util.Map.Entry; /** * Map 集合的循环遍历 * @data 201 阅读全文

posted @ 2021-01-05 17:20 王半仙儿的博客 阅读(7702) 评论(0) 推荐(0) 编辑

2021年1月4日

结果集为List如何转为Map<String,List<Entity>>?

摘要: 普通写法 Map<String, List<Model>> map = new HashMap<>();// 如何获取相同的num 的对象做运算 for (Model model6 : list) { String s = model6.getNum(); if (map.containsKey(s 阅读全文

posted @ 2021-01-04 08:47 王半仙儿的博客 阅读(3251) 评论(0) 推荐(0) 编辑

2020年12月29日

实体类如何"不费力气"的转为Map

摘要: 实际业务中可能需要实体类转Map,那么实体类如何“不费力气”的转成Map? 阅读全文

posted @ 2020-12-29 14:08 王半仙儿的博客 阅读(3162) 评论(0) 推荐(1) 编辑

HashMap

摘要: 随着 JDK 1.8 Streams API 的发布,使得 HashMap 拥有了更多的遍历的方式,但应该选择那种遍历方式?反而成了一个问题。 本文先从 HashMap 的遍历方法讲起,然后再从性能、原理以及安全性等方面,来分析 HashMap 各种遍历方式的优势与不足,本文主要内容如下图所示: H 阅读全文

posted @ 2020-12-29 11:01 王半仙儿的博客 阅读(94) 评论(0) 推荐(0) 编辑

你被同一块“石头”绊倒过两次么?

摘要: 1,什么“石头”? There is no getter for property named 'build_in' in 'class org.jeecg.modules.mass.dto.MassCustomDto' 一顿操作猛如虎,一看控制台就想吐。这是什么AOP?invoke? 这不是重点, 阅读全文

posted @ 2020-12-29 10:12 王半仙儿的博客 阅读(186) 评论(0) 推荐(0) 编辑

Spring 相关知识

摘要: https://www.bilibili.com/video/BV1gW411W7wy?spm_id_from=333.788.b_636f6d6d656e74.173 老雷的Spring注解驱动 源码 https://www.bilibili.com/video/BV1Vf4y127N5?from 阅读全文

posted @ 2020-12-29 09:42 王半仙儿的博客 阅读(50) 评论(0) 推荐(0) 编辑

导航