2021年10月9日
摘要: ClassUtils CGLIB_CLASS_SEPARATOR = "$$"; #public static ClassLoader getDefaultClassLoader() 获取默认ClassLoader,获取结果通常是AppClassLoader。优先级:Thread.currentTh 阅读全文
posted @ 2021-10-09 14:06 icodegarden 阅读(283) 评论(0) 推荐(0)
  2021年10月8日
摘要: AutoPopulatingList AutoPopulatingList<E> implements List<E>, Serializable 获取元素时 get(int) 若为null则自动创建元素并填充的List 内部的List<E> backingList是实际的容器,add、remove 阅读全文
posted @ 2021-10-08 15:42 icodegarden 阅读(132) 评论(0) 推荐(0)
  2021年10月7日
摘要: PathMatcher 顶层接口,路径匹配的策略接口 用于org.springframework.core.io.support.PathMatchingResourcePatternResolver、org.springframework.web.servlet.handler.AbstractU 阅读全文
posted @ 2021-10-07 16:26 icodegarden 阅读(974) 评论(0) 推荐(0)
摘要: IdGenerator 顶层接口,生成UUID UUID generateId(); AlternativeJdkIdGenerator 使用SecureRandom作为初始种子 SecureRandom secureRandom = new SecureRandom(); byte[] seed 阅读全文
posted @ 2021-10-07 15:46 icodegarden 阅读(257) 评论(0) 推荐(0)
摘要: AttributeAccessor 顶层接口,用于向任意对象附加元数据或从任意对象访问元数据 void setAttribute(String name, @Nullable Object value); @Nullable Object getAttribute(String name); def 阅读全文
posted @ 2021-10-07 15:18 icodegarden 阅读(245) 评论(0) 推荐(0)
摘要: package org.springframework.util; IdGenerator、AlternativeJdkIdGenerator、JdkIdGenerator、SimpleIdGenerator PathMatcher、AntPathMatcher Assert AutoPopulat 阅读全文
posted @ 2021-10-07 15:12 icodegarden 阅读(56) 评论(0) 推荐(0)
摘要: AliasRegistry 顶层接口,别名注册 void registerAlias(String name, String alias); void removeAlias(String alias); boolean isAlias(String name); String[] getAlias 阅读全文
posted @ 2021-10-07 15:09 icodegarden 阅读(51) 评论(0) 推荐(0)