2021年10月7日
摘要: PathMatcher 顶层接口,路径匹配的策略接口 用于org.springframework.core.io.support.PathMatchingResourcePatternResolver、org.springframework.web.servlet.handler.AbstractU 阅读全文
posted @ 2021-10-07 16:26 icodegarden 阅读(823) 评论(0) 推荐(0) 编辑
摘要: IdGenerator 顶层接口,生成UUID UUID generateId(); AlternativeJdkIdGenerator 使用SecureRandom作为初始种子 SecureRandom secureRandom = new SecureRandom(); byte[] seed 阅读全文
posted @ 2021-10-07 15:46 icodegarden 阅读(215) 评论(0) 推荐(0) 编辑
摘要: AttributeAccessor 顶层接口,用于向任意对象附加元数据或从任意对象访问元数据 void setAttribute(String name, @Nullable Object value); @Nullable Object getAttribute(String name); def 阅读全文
posted @ 2021-10-07 15:18 icodegarden 阅读(194) 评论(0) 推荐(0) 编辑
摘要: package org.springframework.util; IdGenerator、AlternativeJdkIdGenerator、JdkIdGenerator、SimpleIdGenerator PathMatcher、AntPathMatcher Assert AutoPopulat 阅读全文
posted @ 2021-10-07 15:12 icodegarden 阅读(50) 评论(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 阅读(37) 评论(0) 推荐(0) 编辑