解决Spring和Hibernate整合时HQL查询语句乱码问题
摘要: 只需在配置文件ApplicationContext.xml中加入下面代码红色部分。
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
destroy-method="destroy" > 阅读全文
posted @
2009-04-18 00:29 龙华城 阅读(1832) |
评论 (1) 编辑
HibernateTemplate的常规用法(转载)
摘要: HibernateTemplate提供非常多的常用方法来完成基本的操作,比如通常的增加、删除、修改、查询等操作,Spring 2.0更增加对命名SQL查询的支持,也增加对分页的支持。大部分情况下,使用Hibernate的常规用法,就可完成大多数DAO对象的CRUD操作
阅读全文
posted @
2009-04-17 15:07 龙华城 阅读(981) |
评论 (0) 编辑
hibernate查询语句---HQL
摘要: 1 .from
1.1单表查询
from eg.cat as cat.其中,cat只是一个别名,为了用其他子语句的时候书写简单
1.2多表查询
from eg.Cat,eg.Dog
from eg.Cat as cat,eg.Dog as dog
阅读全文
posted @
2009-04-12 20:15 龙华城 阅读(297) |
评论 (0) 编辑