hibernate 源码分析 HibernateXML
程序员文章站
2022-05-29 21:59:34
...
SettingFactory类:设置属性类。
其中有buildSettings(Properties properties)方法,设置自定义属性。
Mapping类:有点不清楚。
设置类和表之间的映射。class 进去,table出来。:)(了解不清晰。)
Binding类:PO和数据库中表及其之间的映射的绑定。
Configuration类,配置类
Configuration()构建器,调用reset(),重置参数。
还有addClass(),addFile(),add(Document doc) ,addDirectory(),addJar(),addInputString(),addResoure()等一系列方法,通过不同的资源进行配置。
还有通过不同参数重构了许多configure()方法。
configure()通过hibernate.cfg.xml配置。
/**
* Use the mappings and properties specified in an application
* resource named <tt>hibernate.cfg.xml</tt>.
*/
public Configuration configure() throws HibernateException {
configure("/hibernate.cfg.xml");
return this;
}
然后比较重要的是生成SessionFactory;
public SessionFactory buildSessionFactory() throws HibernateException {
secondPassCompile();
validate();
Environment.verifyProperties(properties);
Properties copy = new Properties();
copy.putAll(properties);
Settings settings = buildSettings();
configureCaches(settings);
return new SessionFactoryImpl(this, settings);
}
其他的一些就是通过配置文件设置各种属性。比如数据库方言Dialect等。
其中有buildSettings(Properties properties)方法,设置自定义属性。
Mapping类:有点不清楚。
设置类和表之间的映射。class 进去,table出来。:)(了解不清晰。)
Binding类:PO和数据库中表及其之间的映射的绑定。
Configuration类,配置类
Configuration()构建器,调用reset(),重置参数。
还有addClass(),addFile(),add(Document doc) ,addDirectory(),addJar(),addInputString(),addResoure()等一系列方法,通过不同的资源进行配置。
还有通过不同参数重构了许多configure()方法。
configure()通过hibernate.cfg.xml配置。
/**
* Use the mappings and properties specified in an application
* resource named <tt>hibernate.cfg.xml</tt>.
*/
public Configuration configure() throws HibernateException {
configure("/hibernate.cfg.xml");
return this;
}
然后比较重要的是生成SessionFactory;
public SessionFactory buildSessionFactory() throws HibernateException {
secondPassCompile();
validate();
Environment.verifyProperties(properties);
Properties copy = new Properties();
copy.putAll(properties);
Settings settings = buildSettings();
configureCaches(settings);
return new SessionFactoryImpl(this, settings);
}
其他的一些就是通过配置文件设置各种属性。比如数据库方言Dialect等。
推荐阅读
-
详解Vue-Router源码分析路由实现原理
-
深入解析vue 源码目录及构建过程分析
-
Android getJSONObject与optJSONObject的区别结合源码分析
-
JDK源码分析之String、StringBuilder和StringBuffer
-
Android 2.3 拨号上网流程从源码角度进行分析
-
android的消息处理机制(图文+源码分析)—Looper/Handler/Message
-
关于Spring启动时Context加载源码分析
-
Spring源码分析——调试环境搭建(可能是最省事的构建方法)
-
spring-session简介及实现原理源码分析
-
Java源码分析:深入探讨Iterator模式