`

org.hibernate.AssertionFailure entry

阅读更多
AssertionFailure: null id in xxx entry (don't flush the Session 
after an exception occurs

org.hibernate.AssertionFailure entry null id in entry (don't flush the Session after an exception occurs)异常

 

这个错误看上去是因为id为空了。

 

解决: 我们没有为数据中的非空字段设置值!

 

其实还有一种原因:

那就是方法没有添加事务。

 

我只对service进行了事务拦截,而没有对dao进行事务aop

 

在action中直接调用了dao,就会出现数据库正常插入了数据,但报出了上面的错误。

 

这是因为在插入数据库时,数据库有自增ID的主键策略,而hibernate在flush的时候,发现model中的id为空所致。

为什么会为空,就是没有经过事务处理,hibernate主键策略没有运行。

 

但为什么能正常插入了数据库,研究中。。。

 

分享到:
评论
5 楼 qinglintan 2011-09-27  
1.service配置了事务

2.hbm与db配置了identiy,但是还是报这个错。
4 楼 蜜Mimi 2010-03-11  
怎么解决的要贴出来嘛。。
3 楼 linginfanta 2010-02-23  
east_java 写道
linginfanta 写道
什么原因呢?
你怎么解决的?

你有没有设置主键生成策略?有没有配置事务,检查下这两项。


Mysql-5.0.67
主键是auto_increment
save方法里直接这样写的,数据插入很频繁。
Session session = null;
try
{
	session = getSession();
	Transaction tx = session.beginTransaction();
	session.save(transientInstance);
	tx.commit();
	log.debug("save successful");
}
catch (RuntimeException re)
{
	log.error("save failed", re);
	throw re;
}

偶尔会org.hibernate.AssertionFailure: null id in xxxxx.xxxx.xxxx entry (don't flush the Session after an exception occurs)
2 楼 east_java 2010-02-22  
linginfanta 写道
什么原因呢?
你怎么解决的?

你有没有设置主键生成策略?有没有配置事务,检查下这两项。
1 楼 linginfanta 2010-02-21  
什么原因呢?
你怎么解决的?

相关推荐

    weblogic12 下 org.hibernate.hql.ast.HqlToken

    ### WebLogic 12下org.hibernate.hql.ast.HqlToken冲突解决方案 在使用WebLogic 12部署应用程序时,可能会遇到与`org.hibernate.hql.ast.HqlToken`相关的异常问题。这种异常通常与Hibernate版本之间的不兼容性有关...

    org.springframework.orm.hibernate3.LocalSessionFactoryBean

    hibernateProperties.setProperty("hibernate.dialect", "org.hibernate.dialect.MySQL5Dialect"); hibernateProperties.setProperty("hibernate.show_sql", "true"); sessionFactory.setHibernateProperties...

    org.hibernate.ejb-library-3.4.0.GA-A

    标题 "org.hibernate.ejb-library-3.4.0.GA-A" 指示这是一个与Hibernate相关的库,特别针对EJB(Enterprise JavaBeans)版本3.4.0,并且是为OSGi环境优化的。描述中提到它适用于在Virgo Jetty服务器上进行Web开发,...

    org.hibernate.HibernateException: No Hibernate Session bound to thread

    Hibernate Session 绑定线程解决方案 在 Java web 开发中, Hibernate 是一个非常流行的 ORM(Object-Relational Mapping)框架,用于将 Java 对象映射到关系数据库中。然而,在使用 Hibernate 进行数据库操作时,...

    org.hibernate.ejb-library-3.4.0.GA

    标题中的"org.hibernate.ejb-library-3.4.0.GA"是Hibernate Entity Beans的一个特定版本,它是Hibernate框架的一部分,专门用于处理Java Enterprise Edition (EE)环境中的持久化。Hibernate是著名的对象关系映射...

    org.hibernate.jpa.QueryHints jar包

    org.hibernate.jpa.QueryHints jar hibernate-entitymanager-4.3.0.Final.jar

    解决SpringDataJPA报错:org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null w

    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/...

    HIbernate4.3.6整合c3p0所需jar

    org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.connections.spi.ConnectionProvider] at org.hibernate.service.internal....

    启动tomcat报错org.hibernate.cache.CacheProvider

    标题中的“启动tomcat报错org.hibernate.cache.CacheProvider”指的是在尝试启动Apache Tomcat服务器时遇到了与Hibernate缓存提供者相关的错误。这通常涉及到Hibernate框架的配置或运行时环境问题。Hibernate是一个...

    org.hibernate.eclipse.feature_3.2.3.GA

    org.hibernate.eclipse.feature_3.2.3.GAorg.hibernate.eclipse.feature_3.2.3.GA

    com.springsource.org.hibernate.cache-3.3.2.GA.jar

    jar包,官方版本,自测可用

    hibernate4.0使用二级缓存jar包

    <property name="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory 3.3配置如下: <property name="hibernate.cache.use_second_level_cache">true <property name="cache...

    weblogic10.3 org.hibernate.hql.ast.HqlToken报错问题

    在本问题中,我们遇到了一个特定的错误,即“weblogic10.3 org.hibernate.hql.ast.HqlToken报错”,这涉及到Hibernate ORM框架和其在WebLogic上的运行。让我们深入探讨这个问题,以及可能的解决方案。 首先,`org....

    hibernate-tools(包含版本3、版本5)解决hbm.xml中文注释乱码和生成实体类注释

    在eclipse上通过hibernate...重启eclipse即可生效(插件包所在路径是:D:\eclipse\plugins\org.hibernate.eclipse.libs_3.6.0.Final-v20130327-1513-B111\lib\tools\hibernate-tools-3.4.0.CR2.jar(版本号可能有出入))

    HIbernate4.3.6-c3p0所需jar.rar

    Caused by: org.hibernate.boot.registry.selector.spi.StrategySelectionException: Unable to resolve name [org.hibernate.connection.C3P0ConnectionProvider] as strategy [org.hibernate.engine.jdbc.... ...

    maven+hibernate

    通过配置`hibernate.cfg.xml`文件,我们可以指定数据库连接参数,如URL、用户名、密码等。然后,通过定义Java实体类并使用注解或XML映射文件,我们可以创建对象与数据库表之间的映射关系。 3. **Spring**: Spring...

    hibernate annotations

    1. **配置**:首先,需要在项目中引入Hibernate库,并创建一个配置文件(通常是hibernate.cfg.xml),配置数据库连接信息。 2. **实体定义**:使用注解定义实体类及其属性,指定与数据库表的对应关系。 3. **...

    hibernate.5.1.0.jar全部

    包含hibernate所有所需jar包还有一些其他包日志包、jpa支持包等: 列如:hibernate-core-5.1.0.Final.jar hibernate-ehcache-5.1.0.Final.jar hibernate-entitymanager-5.1.0.Final.jar hibernate-envers-5.1.0....

    Hibernate不同数据库的连接及SQL方言

    Hibernate提供了多种SQL方言,例如org.hibernate.dialect.OracleDialect、org.hibernate.dialect.MySQLDialect、org.hibernate.dialect.SQLServerDialect等。我们可以在配置文件中使用元素来设置SQL方言,例如: ...

    Hibernate_3.6.6_CHM 文档

    org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. org.hibernate.classic This package implements backward-...

Global site tag (gtag.js) - Google Analytics