hibernate
文章平均质量分 72
叶小某
If it scares you,it maybe a goodthing yo try.
展开
-
hibernate学习笔记(二)持久化与ORM
数据持久化 要想了解hibernate需要先理解数据持久化的概念和ORM,下面我们先简单介绍一下持久化。 1、持久化(Persistence) 面向对象很强大,但是有一个问题,就是所有的对象都是在计算机的内存里的,一旦软件关闭,对象消失。于是需要有这样的功能:把内存中的对象保存到数据库里去,需要的时候再从数据库里拿出来。软件一旦停止,对象就不存在了。 持久化原创 2015-12-16 10:29:55 · 513 阅读 · 0 评论 -
hibernate学习笔记(一)hibernate应用背景(为什么要用hibernate)
最近做的一个项目是基于Spring mvc + Spring + hibernate框架。楼主以前未接触过hibernate,通过最近的学习、实践和查阅资料也有了一定深度的理解。现在回过头来,打算按零基础整理出hibernate学习笔记。 一、hibernate出现的背景以及所需要的准备知识 1、web四层体系架构: 方框里面是用到的一些技术和容器。 分层的好处:原创 2015-11-26 21:03:14 · 761 阅读 · 0 评论 -
org.hibernate.QueryException: Expected positional parameter count: 2, actual parameters: [] [SELECT
ssh框架,hibernate查询报错: org.hibernate.QueryException: Expected positional parameter count: 2, actual parameters: [] [SELECT * from Ad where projectId = ? and aprojectYear = ?] 大概意思: org.hibernate.qu原创 2016-03-25 15:59:14 · 3180 阅读 · 1 评论