在整合Spring+Hibernate时报该错误,sessionFactory配置如下: <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> ....... <!-- 自动扫描注解方式配置的hibernate类文件 --> <property name="packagesToScan"…
系列文章 [Nhibernate]体系结构 [NHibernate]ISessionFactory配置 引言 持久化类是应用程序用来解决商业问题的类(比如,在电子交易程序中的Customer和Order).持久化类,就如同它的名字暗示的,是短暂存在的,它的实例会被持久性保存于数据库中. 如果这些类符合简单的规则,NHibernate能够工作的最好,这些规则就是Plain Old CLR Object(POCO,简单传统CLR对象)编程模型. POCO简单示例 用一个类描述一只猫: public…
持久化类是一个应用程序中的类,主要用来实现业务逻辑(例如,在电商应用中的客户和订单类).持久化类,就像它的名字一样,生命周期短暂并且用来持久化的据库对象实例. 如果这些类的构造能够依照一些简单的原则,比如说Plain Old CLR Object (POCO)编程模型,NHibernate能够工作得最好. 一个简单的POCO例子 大多数的.NET应用程序需要一个持久化类来表示猫科动物. using System; using System.Collections.Generic; namespa…
一.unexpected token: *  的解决办法 首先要搞清楚sql与hql的区别! sql操作的是数据库表,而hql操作的是对象! sql中“select * from table”,而hql中" from table对象"! 因为sql用惯了,习惯*,但是hql不认识! 试试:直接 from 对象看看! 办法:String hql = "from KmToolclickCnt where 1=1 "; @Override public GenuineMa…
目录 写在前面 文档与系列文章 条件查询 一个例子 总结 写在前面 上篇文章介绍了HQL查询,我个人觉得使用ORM框架就是为了让少些sql,提高开发效率,而再使用HQL就好像还是使用sql,就觉得有点又回到使用sql的年代.但是完全不用hql也不是绝对的,HQL更接近原生态的sql,对于一些比较复杂的查询,HQL的作用就体现出来了.作为使用面向对象语言的程序员,有时更愿意采用面向对象的方式去思考问题,去实现查询,这就是本篇文章要学习的条件查询(Criteria Query). 文档与系列文章 […
Chapter 14. HQL: The Hibernate Query Language 14.1. Case Sensitivity 14.2. The from clause 14.3. Associations and joins 14.4. Forms of join syntax 14.5. Referring to identifier property 14.6. The select clause 14.7. Aggregate functions 14.8. Polymorp…
原文链接:http://www.codeproject.com/Articles/9680/Persistent-Data-Structures Introduction When you hear the word persistence in programming, most often, you think of an application saving its data to some type of storage, such as a database, so that the…
From the Tutorial and other documentation sources, you learned how to create business classes for your XAF applications. If you have business classes in your application, you have database tables in the application's database. However, the reality is…
XAF ships with the Business Class Library that contains a number of persistent classes ready for use in your applications. All these classes derive from the BaseObject base persistent class declared in the same library. This is a recommended-to-use f…
In this lesson, you will learn how to implement business classes from scratch. For this purpose, the Department and Position business classes will be implemented. These classes will be used in the Contact class, implemented previously. You will also…