基于Hibernate中配置文件的学习(分享)
程序员文章站
2023-12-20 10:07:58
首先我们看一下hibernate的主配置文件
首先我们看一下hibernate的主配置文件
<!doctype hibernate-configuration public "-//hibernate/hibernate configuration dtd 3.0//en" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <!-- 通常,一个session-factory节点代表一个数据库 --> <session-factory> <!-- 1. 数据库连接配置 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.driver</property> <property name="hibernate.connection.url">jdbc:mysql:///day17</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">root</property> <!-- 数据库方法配置, hibernate在运行的时候,会根据不同的方言生成符合当前数据库语法的sql --> <property name="hibernate.dialect">org.hibernate.dialect.mysql5dialect</property> <!-- 2. 其他相关配置 --> <!-- 2.1 显示hibernate在运行时候执行的sql语句 --> <property name="hibernate.show_sql">true</property> <!-- 2.2 格式化sql --> <property name="hibernate.format_sql">true</property> <!-- 2.3 自动建表 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- 3. 加载所有映射 --> <mapping resource="cn/itcast/entity/employee.hbm.xml"/> </session-factory> </hibernate-configuration>
里面主要得代码都有注释说明,大家一看就会懂,在xml文件的最近,我们看到有一句代码为:
<!-- 3. 加载所有映射 --> <mapping resource="cn/itcast/entity/employee.hbm.xml"/>
这是添加一个映射文件,意思就是你要使用的数据库中的表
映射文件为:
<?xml version="1.0"?> <!doctype hibernate-mapping public "-//hibernate/hibernate mapping dtd 3.0//en" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="cn.itcast.entity"> <class name="employee" table="employee"> <!-- 主键 ,映射--> <id name="empid" column="id"> <generator class="native"/> </id> <!-- 非主键,映射 --> <property name="empname" column="name"></property> <property name="workdate" column="workdate"></property> </class> </hibernate-mapping>
这个配置文件和一个实体类 employee.java相关联,name里面的值是类中的属性,column里面的值是数据库表employee中的字段名称,通过映射相关联起来。
相对应的实体类中的属性描述为:
相应的数据库表employee的字段为:
通过映射文件相关联起来。
如上所述,就是一个简单的hibernate的配置过程,如果新手读者想学习的话,可以将上述文件中的部分改一下就可以了,主配置文件中主要涉及数据库的连接,包括数据库驱动,所连接的数据库名称,以及数据库用户名以及密码,还有就是下面的要加载的映射文件。
关于映射文件的修改,可以仿照上面我的例子进行修改然后运用到自己的例子的。
以上这篇基于hibernate中配置文件的学习(分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。