hibernate
墨笙弘一
这个作者很懒,什么都没留下…
展开
-
hibernate-----异常(1)
Exception in thread "main" java.util.ServiceConfigurationError: org.hibernate.boot.model.TypeContributor: Provider org.hibernate.type.Java8DateTimeTypeContributor not found at java.util.ServiceLoader原创 2016-01-30 16:53:13 · 1206 阅读 · 0 评论 -
not-null property references a null or transient value
org.apache.cxf.interceptor.Fault: not-null property references a null or transient value: com.wondersgroup.common.model.TbJkglTjinfo.yxbz; nested exception is org.hibernate.PropertyValueException: not...原创 2018-03-30 16:12:11 · 1364 阅读 · 0 评论 -
org.hibernate.exception.GenericJDBCException: could not execute statement
在用hibernate的时候,可能会存在错误的用法,导致报下面的这种错误:org.hibernate.exception.GenericJDBCException: could not execute statement错误信息如下:org.hibernate.exception.GenericJDBCException: could not execute statementat org.hib原创 2017-05-08 08:21:28 · 12973 阅读 · 0 评论 -
UUID生成系统主键
在项目中,表结构设计中只有一个主键且是系统自动生成,我就采取了UUID生成主键策略,下面是我生成主键的代码:package com.wonders.test;import java.util.UUID;/** * 使用uuid自动生成主键 * @author liyongyong * 2016年10月11日 */public class TestUUID { public sta原创 2016-10-11 11:36:14 · 3215 阅读 · 0 评论 -
hibernate---配置属性
1.hibernate.show_sql(1)在hibernate.cfg.xml中配置true(2)作用:在控制台输出所有的sql语句声明,这个在日志目录中是一个可选择的属性,它的值有两个true或者false。true:在控制台打印sql日志信息false:在控制台部打印sql日志信息2.hibernate.format_sql(1)在hibernate.cfg.x原创 2016-01-31 14:07:29 · 438 阅读 · 0 评论 -
hibernate异常(2)
在做hibernate得时候,用Junit4做单元测试,出现了下面这个错误com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table ' at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.Nati原创 2016-02-12 23:50:10 · 1934 阅读 · 0 评论 -
hibernate之hibernate.hbm2ddl.auto
Automatically validates or exports schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when theSessionFactory is closed explicitly.翻译 2016-01-31 11:17:13 · 466 阅读 · 0 评论 -
hibernate-----模拟hibernate原理
Student.javapackage com.dqpi.eonline.model;public class Student { private int id; private String name; private int age; public int getId() { return id; } public void setId(int id) { th原创 2016-01-31 01:02:38 · 325 阅读 · 0 评论 -
hibernate之AnnotationConfigration
原来在hibernate中如果要用注解的时候,需要在获取configration对象的时候new一个AnnotationConfigration(),但是在hibernate5.0.7中可以直接用Configuration configuration = new Configuration();而可以不用Configuration configuration = new Annotatio原创 2016-01-30 17:39:57 · 415 阅读 · 0 评论 -
Hibernate中通过传入实体的主键id来使用get方法获取整个实体的内容问题
做老项目的一个需求变更,遇到一个问题,我直接调用封装好的dao中的get方法,传入参数这个实体的主键,结果报下面的错误:八月 31, 2018 11:14:49 上午 org.apache.catalina.core.StandardWrapperValve invoke严重: Servlet.service() for servlet [springServlet] in contex...原创 2018-08-31 12:58:45 · 2462 阅读 · 3 评论