hibernate 博客分类: ssh2 HibernateHSQLDBSQLOracleMySQL
程序员文章站
2024-03-22 22:35:28
...
1.加hibernate的jar包...-------------------最原始的包
antlr-2.7.6.jar commons-collections-3.1.jar dom4j-1.6.1.jar hibernate3.jar javassist-3.12.0.GA.jar jta-1.1.jar slf4j-api-1.6.1.jar slf4j-nop-1.5.8.jar
2.加入相应的数据库驱动包(如:mysql.oracle.sqlserver)
上网找一个
3.建立hibernate.cfg.xml(该名是约定俗成的).
<?xml version='1.0' encoding='utf-8'?> <!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> <!-- Database connection settings --> <property name="connection.driver_class">org.hsqldb.jdbcDriver</property> <property name="connection.url">jdbc:hsqldb:hsql://localhost</property> <property name="connection.username">sa</property> <property name="connection.password"></property> <!-- JDBC connection pool (use the built-in) --> <property name="connection.pool_size">1</property> <!-- SQL dialect --> <property name="dialect">org.hibernate.dialect.HSQLDialect</property> <!-- Enable Hibernate's automatic session context management --> <property name="current_session_context_class">thread</property> <!-- Disable the second-level cache --> <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property> <!-- Echo all executed SQL to stdout --> <property name="show_sql">true</property> <!-- Drop and re-create the database schema on startup --> <property name="hbm2ddl.auto">update</property> <mapping resource="org/hibernate/tutorial/domain/Event.hbm.xml"/> </session-factory> </hibernate-configuration >
4.实体类得映射文件(如:Student.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.com.lrs.model"> <class name="Student" table=""> <id name="id" column=""> <generator class="name"></generator> <generator class="age"></generator> </id> </class> </hibernate-mapping>
5.然后再hibernate.cfg.xml配置文件加上
<mapping resource="cn/com/lrs/model/Student.hbm.xml"/>
推荐阅读
-
hibernate 博客分类: ssh2 HibernateHSQLDBSQLOracleMySQL
-
结合HSQLDB测试hibernate实例 博客分类: 软件安装及使用 hsqldbhibernatejava
-
入门 05 - Query接口 博客分类: hibernate3
-
入门 05 - Query接口 博客分类: hibernate3
-
HSQL 在 Hibernate 中的配置 博客分类: Hibernate hsqlhibernate
-
hibernate中映射长文本类型的通用方式 博客分类: java HibernateMySQLOraclePostgreSQL
-
Spring与Hibernate的整合 博客分类: 整合 hibernatespring
-
Struts2+Spring2.5+Hibernate3.3整合开发 博客分类: 整合
-
Hibernate_9 博客分类: Hibenate hibernate事务
-
Hibernate_11 博客分类: Hibenate hibernate缓存Session