java
鲁莽的二虎
这个作者很懒,什么都没留下…
展开
-
java 代理 Proxy InvocationHandler
package com.ruoyi.estate.third.aspect; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; /** * @Description: * @Author: lvjie * @Date: 2022/5/10 10:13 */原创 2022-05-12 09:44:32 · 141 阅读 · 0 评论 -
HashMap源码
public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable{ //new Map(啥都不写) 时的 默认容量 16 static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 16 // static final int MAXIMUM_CAPA原创 2022-01-11 14:19:37 · 77 阅读 · 0 评论 -
运行慢代码优化
慢: 1.debug找到慢的地方 2.优化:添加线程、优化重复操作(归并)。原创 2021-12-11 09:59:09 · 397 阅读 · 0 评论 -
易出bug的点
一、不判断产生: 1.查询List不判断是不是空直接get()。 2.不判断null。 3.不判断空。 二、事务产生 1.原创 2021-12-10 17:54:04 · 261 阅读 · 0 评论 -
springMVC属性编辑器@initBinder
原创 2021-09-16 15:00:06 · 86 阅读 · 0 评论