===========spring.xml,TestDao.java,DomainObject.java,Client.java========
===========spring.xml=========
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<bean id="placeHolder"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
p:locations="classpath:jdbc.properties" />
<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName"
value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="annotatedClasses">
<list>
<value>com.spring.ch11.dao.hibernate.demo.DomainObject</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQL5Dialect
</prop>
</props>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="com.spring.ch11.dao.hibernate.demo.TestDao"
class="com.spring.ch11.dao.hibernate.demo.TestDao"
p:sessionFactory-ref="sessionFactory">
</bean>
</beans>
===================TestDao.java
package com.spring.ch11.dao.hibernate.demo;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
public class TestDao {
private SessionFactory sessionFactory;
public void setSessionFactory(SessionFactory sessionFactory) {
this.sessionFactory = sessionFactory;
}
public Session getSession() {
return this.sessionFactory.openSession();
}
}
===================DomainObject.java
package com.spring.ch11.dao.hibernate.demo;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "demo")
public class DomainObject implements Serializable {
private int id;
private float unitPrice;
private String name;
@Id
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public float getUnitPrice() {
return unitPrice;
}
public void setUnitPrice(float unitPrice) {
this.unitPrice = unitPrice;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
===================Client.java
package com.spring.ch11.dao.hibernate.demo;
import java.util.List;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.hibernate.Session;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Client {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml",Client.class);
TestDao testBean = (TestDao) context.getBean(TestDao.class.getName());
Session init = testBean.getSession();
System.out.println(init);
// init.beginTransaction();
List<DomainObject> demoList = init.createQuery("from DomainObject").list();
for (DomainObject demo : demoList) {
System.out.println(ToStringBuilder.reflectionToString(demo));
}
// init.getTransaction().commit();
}
}
说明:openSession改成getCurrentSession的话就会报错No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here。
此时解决方案是:
在hibernateProperties中添加
<prop key="hibernate.current_session_context_class">
thread
</prop>
<prop key="hibernate.transaction.factory_class">
org.hibernate.transaction.JDBCTransactionFactory
</prop>
分享到:
相关推荐
**标题:“Hibernate API 结构与Spring整合”** **一、Hibernate 概述** Hibernate 是一个优秀的对象关系映射(ORM)框架,它为Java开发者提供了便捷的数据持久化工具。通过Hibernate,开发人员可以将数据库操作...
在Spring中,我们可以使用`@Repository`注解将接口实现类注入到Spring容器中,然后利用@Autowired注解自动装配`SessionFactory`,以便于调用Hibernate API来执行数据库操作。例如: ```java @Repository public ...
而Hibernate则是一个对象关系映射(ORM)框架,它简化了Java与关系数据库之间的交互,通过对象模型与SQL语句的映射,使得开发人员无需直接编写SQL即可操作数据库。 在Oracle数据库中,LOB字段主要有BLOB(Binary ...
- 如果使用了Spring来管理Hibernate的SessionFactory,确保配置无误。 #### 二、配置Struts.xml **1. 创建Struts.xml配置文件:** - 在项目的`WEB-INF/classes`目录下创建名为`struts.xml`的文件。 - 使用如下...
5. **Query API**:Hibernate提供了多种查询方式,包括HQL(Hibernate Query Language)、Criteria API和Native SQL查询等。 ### Struts框架的关键概念 1. **MVC架构**:Struts遵循MVC设计模式,其中模型(Model)...
本文将围绕Hibernate API进行深入探讨,涵盖其核心概念、主要功能以及使用方法。 1. Hibernate概述: Hibernate 是Java社区中广泛使用的持久化框架,它遵循Java Persistence API(JPA)。通过Hibernate,开发者...
3. Native SQL:直接使用SQL查询,适用于复杂或性能要求高的场景。 六、关联映射 Hibernate支持一对一、一对多、多对一和多对多四种关联关系的映射,通过注解或XML配置实现: - @OneToOne:一对一关系。 - @...
### Struts2 + Spring2 + Hibernate3 整合实例源码分析 #### 一、概述 随着企业级应用的发展,为了提高开发效率和系统维护性,越来越多的项目开始采用MVC设计模式。其中,Struts2作为MVC框架中的佼佼者,在前端...
Hibernate支持多种查询方式,包括HQL(Hibernate Query Language)、Criteria API以及Native SQL查询。其中,HQL是一种面向对象的查询语言,它的语法类似于SQL,但更接近于Java表达式。通过HQL,开发人员可以轻松地...
综上所述,Hibernate和Spring的结合使用能大幅提升Java应用程序的开发效率,但同时也需要开发者对两者有深入的理解,以解决可能出现的性能和设计难题。掌握这些技术要点,有助于在实际项目中更好地运用这两个强大的...
3. **Native SQL**:直接执行原生SQL语句。 ### 二、Spring框架简介 #### Spring框架的作用 1. **简化企业级应用开发**:Spring提供了一套完整的解决方案,包括IoC容器、AOP、数据访问/集成、Web等模块。 2. **...
- **Native SQL**:直接执行原生 SQL 语句。 5. **Hibernate 的优点**: - **减少 JDBC 代码量**:Hibernate 自动处理了大部分的 CRUD 操作。 - **提供 ORM 支持**:将 Java 对象与数据库表自动映射,简化了数据...
在项目中引入 Spring Data JPA 和相应的 JPA 实现(如 Hibernate),配置实体扫描路径、数据源、JPA 配置、Repository 扫描等。 **4. 实体类与表的映射** 使用 `@Entity` 注解标记实体类,`@Table` 定义对应的...
6. Native SQL支持:虽然Hibernate主要关注ORM,但它也允许直接执行原生的SQL查询,以满足特定需求或利用数据库特定的功能。 7. Event Listeners:Hibernate允许注册事件监听器,以便在特定的操作(如插入、更新、...
对于主键生成策略,Hibernate提供了多种选择,如identity、native、increment等,它们分别对应不同的数据库特性和性能需求。基于注解的映射方式是现代Hibernate应用的主流,如使用`@Id`标注主键字段,`@Column`标注...
6. Native SQL:当需要充分利用数据库特定特性时,可以使用原生SQL查询,Hibernate提供了支持。 7. 一对多、多对一、多对多关系映射:这部分会讲解如何处理不同类型的关联关系,包括集合的映射和懒加载。 8. 私有...
8. Native SQL和Callable Statements:当HQL或Criteria API无法满足需求时,如何直接使用原生SQL,并调用存储过程。 9. Cache和性能优化:介绍了Hibernate的缓存机制,包括一级缓存和二级缓存,以及如何进行性能...
- **Native SQL:** 直接使用数据库原生 SQL 查询。 - **Query by Example:** 通过示例对象进行查询。 **HQL 示例:** - **属性查询:** 如 `SELECT e FROM Employee e WHERE e.name = 'John'`。 - **参数查询:**...
5. Native SQL:研究如何使用原生SQL与Hibernate集成,以及结果集的映射。 此外,【spring2.5.6-src.rar】是Spring框架的一个版本,它是一个轻量级、全面的Java企业级应用开发框架。Spring提供依赖注入(DI)和面向...
2. Hibernate 应用通常包括四部分:使用 Hibernate API 的程序、配置文件、SessionFactory、Session。缺省的 XML 格式配置文件名为 `hibernate.cfg.xml`,通常放在类路径(classpath)下,其根元素是 `<hibernate-...