请简述在JAVA Web应用开发中使用Hibernate操作数据库的步骤?
3个回答
展开全部
第一步:导入hibernate的jar包 到WEB-INF的lib下
第二步:在src目录下写一个hibernate.cfg.xml配置文件
<?xml version='1.0' encoding='gb2312'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!--显示执行的SQL语句-->
<property name="show_sql">true</property>
<!--连接字符串-->
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:ORCL</property>
<!--连接数据库的用户名-->
<property name="connection.username">bsp</property>
<!--数据库用户密码-->
<property name="connection.password">bsp</property>
<!--数据库驱动-->
<property name="connection.driver_class">oracle.jdbc.OracleDriver</property>
<!--JDBC连接池(使用内置的连接池)-->
<property name="connection.pool_size">1</property>
<!--设置Hibernate自动管理上下文的策略-->
<property name="current_session_context_class">thread</property>
<!--选择使用的方言-->
<property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
<!--在启动时删除并重新创建数据库-->
<property name="hbm2ddl.auto">update</property>
<mapping class="com.entity.Person"></mapping>
</session-factory>
</hibernate-configuration>
第三步:在src目录下建一个com.entity包,里面建一个Person类
package com.bsp.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class Person {
private String id;
private String name;
@Id
@Column(length=10)
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Column(length=10)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
第四步:建一个测试类
package com.bsp.test;
import org.hibernate.Session;
import com.HibernateSessionFactory;
import junit.framework.TestCase;
public class TestBsp extends TestCase{
public void testSave() throws Exception {
Session session = HibernateSessionFactory.getSession();
session.close();
}
}
运行就可以自动在数据库里生成表了
第二步:在src目录下写一个hibernate.cfg.xml配置文件
<?xml version='1.0' encoding='gb2312'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!--显示执行的SQL语句-->
<property name="show_sql">true</property>
<!--连接字符串-->
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:ORCL</property>
<!--连接数据库的用户名-->
<property name="connection.username">bsp</property>
<!--数据库用户密码-->
<property name="connection.password">bsp</property>
<!--数据库驱动-->
<property name="connection.driver_class">oracle.jdbc.OracleDriver</property>
<!--JDBC连接池(使用内置的连接池)-->
<property name="connection.pool_size">1</property>
<!--设置Hibernate自动管理上下文的策略-->
<property name="current_session_context_class">thread</property>
<!--选择使用的方言-->
<property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
<!--在启动时删除并重新创建数据库-->
<property name="hbm2ddl.auto">update</property>
<mapping class="com.entity.Person"></mapping>
</session-factory>
</hibernate-configuration>
第三步:在src目录下建一个com.entity包,里面建一个Person类
package com.bsp.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class Person {
private String id;
private String name;
@Id
@Column(length=10)
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Column(length=10)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
第四步:建一个测试类
package com.bsp.test;
import org.hibernate.Session;
import com.HibernateSessionFactory;
import junit.framework.TestCase;
public class TestBsp extends TestCase{
public void testSave() throws Exception {
Session session = HibernateSessionFactory.getSession();
session.close();
}
}
运行就可以自动在数据库里生成表了
展开全部
那只能是new了!
也可以使用多态扩充一下!
给你在这写一个例子,代码格式就不怎么讲究了:
1、直接new
首先可以写一个父类来方便获取Session
public Class HibernateSF{
// 这里面内容可以参考MyEclipse自动生成的SessionFactory静态类
public static Session getSession{
// 这里面的内容你自己写了
}
}
public Class StudentDao {
public List getStudents(){
// 这里面的内容你自己写了
}
}
然后struts的action里面直接
StudentDao sdao = new StudentDao()了 !
2、接口多态就是
public interface IStudentDao{
}
这样就是 IStudentDao sdao = new StudentDao();
建议学习Spring ,那样你会发现这个过程显得更简单了!
也可以使用多态扩充一下!
给你在这写一个例子,代码格式就不怎么讲究了:
1、直接new
首先可以写一个父类来方便获取Session
public Class HibernateSF{
// 这里面内容可以参考MyEclipse自动生成的SessionFactory静态类
public static Session getSession{
// 这里面的内容你自己写了
}
}
public Class StudentDao {
public List getStudents(){
// 这里面的内容你自己写了
}
}
然后struts的action里面直接
StudentDao sdao = new StudentDao()了 !
2、接口多态就是
public interface IStudentDao{
}
这样就是 IStudentDao sdao = new StudentDao();
建议学习Spring ,那样你会发现这个过程显得更简单了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.Configuration conf = new Configuration().configure();
2.SessionFactory sf = conf.buildSessionFactory();
3.session = sf.openSession();
4.Transaction tx = session.beginTransaction();
5.session.save(class, serializable);
6.tx.commit();
7.session.close();
ps: 增删改需要 4. 6. 步 查询不需要
2.SessionFactory sf = conf.buildSessionFactory();
3.session = sf.openSession();
4.Transaction tx = session.beginTransaction();
5.session.save(class, serializable);
6.tx.commit();
7.session.close();
ps: 增删改需要 4. 6. 步 查询不需要
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询