Hibernate 自动生产表

时间:2023-03-09 00:09:26
Hibernate 自动生产表

hibernate是一个开放源代码的对象关系映射框架,它对JDBC进行了非常轻量级的对象封装,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库

今天就来演示一下Hibernate最初级的操作,使用SchemaExport创建数据表。

1.首先建立POJO类

  1. package com.bjpowernode.hibernate;
  2. import java.util.Date;
  3. /**
  4. * 用户
  5. * @author Longxuan
  6. *
  7. */
  8. public class User {
  9. private String  id;
  10. private String name;
  11. private String password;
  12. private Date createTime;
  13. private Date expireTime;
  14. public String getId() {
  15. return id;
  16. }
  17. public void setId(String id) {
  18. this.id = id;
  19. }
  20. public String getName() {
  21. return name;
  22. }
  23. public void setName(String name) {
  24. this.name = name;
  25. }
  26. public String getPassword() {
  27. return password;
  28. }
  29. public void setPassword(String password) {
  30. this.password = password;
  31. }
  32. public Date getCreateTime() {
  33. return createTime;
  34. }
  35. public void setCreateTime(Date createTime) {
  36. this.createTime = createTime;
  37. }
  38. public Date getExpireTime() {
  39. return expireTime;
  40. }
  41. public void setExpireTime(Date expireTime) {
  42. this.expireTime = expireTime;
  43. }
  44. }

2、根据POJO类里面里面相关的字段,在包中创建User.hbm.xml映射文件

  1. <?xml version="1.0"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC
  3. "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  4. "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  5. <hibernate-mapping>
  6. <class name="com.bjpowernode.hibernate.User" >
  7. <!--hibernate为我们生成主键id-->
  8. <id name="id">
  9. <generator class="uuid" />
  10. </id>
  11. <!--默认把类的变量映射为相同名字的表列,当然我们使用column属性修改表字段-->
  12. <property name="name" column="name"></property>
  13. <property name="password"></property>
  14. <property name="createTime"></property>
  15. <property name="expireTime"></property>
  16. </class>
  17. </hibernate-mapping>

3、在src中建立hibernate.cfg.xml

  1. <!DOCTYPE hibernate-configuration PUBLIC
  2. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  3. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  4. <hibernate-configuration>
  5. <session-factory name="foo">
  6. <!-- 数据库的连接也可以直接使用hibernate.properties文件 -->
  7. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  8. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate_test</property>
  9. <property name="hibernate.connection.username">root</property>
  10. <property name="hibernate.connection.password">root</property>
  11. <property name="hibernate.dialect" >org.hibernate.dialect.MySQLDialect</property><!-- 指定sql方言 -->
  12. <property name="hibernate.show_sql">true</property><!-- 设置是否显示生成sql语句 -->
  13. <property name="hibernate.format_sql">true</property><!-- 设置是否格式化sql语句-->
  14. <mapping resource="com/bjpowernode/hibernate/User.hbm.xml"  />
  15. </session-factory>
  16. </hibernate-configuration>

4、建立ExportDB类

  1. package com.bjpowernode.hibernate;
  2. import org.hibernate.cfg.Configuration;
  3. import org.hibernate.tool.hbm2ddl.SchemaExport;
  4. /**
  5. * 将hbm生成ddl
  6. * @author Longxuan
  7. *
  8. */
  9. public class ExportDB {
  10. /**
  11. * @param args
  12. */
  13. public static void main(String[] args) {
  14. // 默认读取hibernate.cfg.xml文件
  15. Configuration cfg = new Configuration().configure();
  16. // 生成并输出sql到文件(当前目录)和数据库
  17. SchemaExport export = new SchemaExport(cfg);
  18. // true 在控制台打印sql语句,true 导入sql语句到数据库,即可执行
  19. export.create(true, true);
  20. }
  21. }

5、建立log4j.properties日志文件

  1. ### direct log messages to stdout ###
  2. log4j.appender.stdout=org.apache.log4j.ConsoleAppender
  3. log4j.appender.stdout.Target=System.out
  4. log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
  5. log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
  6. ### set log levels - for more verbose logging change 'info' to 'debug' ###
  7. log4j.rootLogger=warn, stdout

现在可以测试了。首先在MySQL中创建hibernate_test数据库:

Hibernate 自动生产表

运行ExportDB的main方法,结果如图:

Hibernate 自动生产表

Hibernate 自动生产表