摘要:
PathMatcher 顶层接口,路径匹配的策略接口 用于org.springframework.core.io.support.PathMatchingResourcePatternResolver、org.springframework.web.servlet.handler.AbstractU 阅读全文
摘要:
IdGenerator 顶层接口,生成UUID UUID generateId(); AlternativeJdkIdGenerator 使用SecureRandom作为初始种子 SecureRandom secureRandom = new SecureRandom(); byte[] seed 阅读全文
摘要:
AttributeAccessor 顶层接口,用于向任意对象附加元数据或从任意对象访问元数据 void setAttribute(String name, @Nullable Object value); @Nullable Object getAttribute(String name); def 阅读全文
摘要:
package org.springframework.util; IdGenerator、AlternativeJdkIdGenerator、JdkIdGenerator、SimpleIdGenerator PathMatcher、AntPathMatcher Assert AutoPopulat 阅读全文
摘要:
AliasRegistry 顶层接口,别名注册 void registerAlias(String name, String alias); void removeAlias(String alias); boolean isAlias(String name); String[] getAlias 阅读全文