hibernate
qq_39005790
这个作者很懒,什么都没留下…
展开
-
hibernate 面试题
一、什么是hibernate1.Hibernate是一个操作数据库的框架,实现了对JDBC的封装,大大简化了数据访问层繁琐的重复性代码;2.Hibernate是一个ORM(对象关系映射)框架,我们在写程序时 ,用的时面向对象的方法,但是在关系型数据库里,存的是一条条的数据,为了用纯面向对象的思想解决问题,所有需要将程序中的对象和数据库的记录建立起映射关系,ORM就是这样的技术,而Hibernate...原创 2018-06-24 19:03:22 · 1167 阅读 · 0 评论 -
org.springframework.dao.InvalidDataAccessApiUsageException:
错误消息: Write operations are not allowed in read-only mode (FlushMode.MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker from transaction definition.org.springframew...原创 2018-07-19 13:46:32 · 768 阅读 · 0 评论 -
spring hibernate c3p0 整合连接不上数据库
可能原因1,驱动配置有误:driver=com.mysql.jdbc.Driver2,数据库连接地址有误:url=jdbc:mysql://localhost:3306/test?3useUnicode=true&characterEncoding=utf83,密码或帐号有误:username=root password=root4,数据库未启动或无权访问5,项...原创 2018-08-12 02:00:44 · 667 阅读 · 0 评论 -
org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session
报错信息如下:org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org.hibernate.exception.GenericJDBCException: Unable ...原创 2018-08-12 02:27:59 · 10531 阅读 · 0 评论