hibernate涂鸦(4)——type
org.hibernate.type.TypeResolver
? -- basicTypeRegistry: 在无参构造函数中被new出来,并在带参构造函数中被赋值
? -- typeFactory: 在无参构造函数中被new出来,并在带参构造函数中被赋值
? -- public Type heuristicType(String) throws MappingException: 调用②heuristicType(typeName, null)
? -- public Type heuristicType(String, Properties) throws MappingException:
- 调用basic(typeName)直接得到BasicType的对象,如果存在BacisType对象(在basicTypeRegistry初始化时就注册好了的类型)就直接return通过typeName参数得出Class对象,如果Class对象存在,调用typeFactory.byClass(Class对象, Properties参数)得到Hibernate的对象类型(包括Type,CompositeUserType,UserType,Lifecycle,Validatable,Serializable)后return
?
?
org.hibernate.type.BasicTypeRegistry: @TODO
?
org.hibernate.type.TypeFactory: @TODO