- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 java、jpa(和 hibernate)编写了一个桌面应用程序。
我有一个页面,用户可以在其中编辑 bean 字段并将其保存到数据库。 bean 的字段codice
是唯一的。数据库有 2 行,第一行包含 codice
= 0
,第二行包含 codice
= 00
。
用途是编辑第一个bean 0
并将codice
字段更改为00
,并尝试持久化它。 entityManager.commit() 会引发异常:
错误: key “codice”的条目“00”重复
。
异常被捕获并显示给用户,它将 codice 字段修改为 11
(尚不存在)并尝试保留。
entityManager.commit()
再次引发相同的异常
(错误: key 重复输入“00”)
就像它再次尝试保留旧项目一样。
这里是一个案例:
EntityManager em = Persistence.createEntityManagerFactory(
"testNewDataModel").createEntityManager();
Articolo a = em.find(Articolo.class, 1L);
EntityTransaction tx = em.getTransaction();
a.setNome("albi8");
// ---- 1 ---- just a normal commit, no errors
tx.begin();
a = em.merge(a);
tx.commit();
System.out.println("---- 1 ----");
// ---- 2 ---- will cause Duplicate entry error
tx.begin();
a.setCodice("00"); // already exist an item with codice = 00 -> Duplicate entry '00' for key 'codice'
a = em.merge(a);
try {
System.out.println("---- 2 ---- pre commit");
tx.commit();
System.out.println("---- 2 ---- after commit");
} catch (Exception e) {
System.out.println("Duplicate entry '00' for key 'codice'");
}
// ---- 3 ---- trying to correct the previous error
tx.begin();
a.setCodice("11"); //this code don't exist yet
a.setNome("alby9");
a = em.merge(a);
try {
System.out.println("---- 3 ---- pre commit");
tx.commit();
System.out.println("---- 3 ---- after commit");
} catch (Exception e) {
e.printStackTrace(); //Duplicate entry '00' for key 'codice'
}
她的输出:
org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory
22-ago-2012 18.41.02 org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory <init>
INFO: HHH000397: Using ASTQueryTranslatorFactory
Hibernate: select articolo0_._id as column1_12_0_, articolo0_.id_categoria as id10_12_0_, articolo0_.codice as codice12_0_, articolo0_.coefficiente_prezzo as coeffici3_12_0_, articolo0_.descrizione as descrizi4_12_0_, articolo0_.id_foto as id5_12_0_, articolo0_.nome as nome12_0_, articolo0_.posizione as posizione12_0_, articolo0_.prezzo_imponibile as prezzo8_12_0_, articolo0_.prezzo_vendita as prezzo9_12_0_, articolo0_1_.quantita as quantita13_0_ from inventario4.articolo articolo0_ left outer join inventario4.magazzino articolo0_1_ on articolo0_._id=articolo0_1_._id_articolo where articolo0_._id=?
---- 1 ----
---- 2 ---- pre commit
Hibernate: update inventario4.articolo set id_categoria=?, codice=?, coefficiente_prezzo=?, descrizione=?, id_foto=?, nome=?, posizione=?, prezzo_imponibile=?, prezzo_vendita=? where _id=?
22-ago-2012 18.41.02 org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
WARN: SQL Error: 1062, SQLState: 23000
22-ago-2012 18.41.02 org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
ERROR: Duplicate entry '00' for key 'codice'
Duplicate entry '00' for key 'codice'
---- 3 ---- pre commit
Hibernate: update inventario4.articolo set id_categoria=?, codice=?, coefficiente_prezzo=?, descrizione=?, id_foto=?, nome=?, posizione=?, prezzo_imponibile=?, prezzo_vendita=? where _id=?
22-ago-2012 18.41.02 org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
WARN: SQL Error: 1062, SQLState: 23000
22-ago-2012 18.41.02 org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
ERROR: Duplicate entry '00' for key 'codice'
javax.persistence.RollbackException: Error while committing the transaction
at org.hibernate.ejb.TransactionImpl.commit(TransactionImpl.java:90)
at org.lelmarir.test.Main.main(Main.java:79)
Caused by: javax.persistence.PersistenceException: org.hibernate.exception.ConstraintViolationException: Duplicate entry '00' for key 'codice'
at org.hibernate.ejb.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1361)
at org.hibernate.ejb.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1289)
at org.hibernate.ejb.TransactionImpl.commit(TransactionImpl.java:78)
... 1 more
Caused by: org.hibernate.exception.ConstraintViolationException: Duplicate entry '00' for key 'codice'
at org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:74)
at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:47)
at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:125)
at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:110)
at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:129)
at org.hibernate.engine.jdbc.internal.proxy.AbstractProxyHandler.invoke(AbstractProxyHandler.java:81)
at $Proxy21.executeUpdate(Unknown Source)
at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:56)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:3006)
at org.hibernate.persister.entity.AbstractEntityPersister.updateOrInsert(AbstractEntityPersister.java:2908)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:3237)
at org.hibernate.action.internal.EntityUpdateAction.execute(EntityUpdateAction.java:113)
at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:272)
at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:264)
at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:187)
at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:326)
at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:52)
at org.hibernate.internal.SessionImpl.flush(SessionImpl.java:1081)
at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:315)
at org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.beforeTransactionCommit(JdbcTransaction.java:101)
at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.commit(AbstractTransactionImpl.java:175)
at org.hibernate.ejb.TransactionImpl.commit(TransactionImpl.java:73)
... 1 more
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '00' for key 'codice'
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)
at com.mysql.jdbc.Util.getInstance(Util.java:381)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3558)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3490)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1959)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2109)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2648)
at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2077)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2362)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2280)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2265)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:122)
... 18 more
最后是问题:为什么事务仍然尝试使用 codice
= 00
持久化一行?
最佳答案
我怀疑问题在于您在事务之间重用了相同的对象。我要么清除
实体管理器,要么使用find
加载新的对象。但我不确定,我已经很长时间没有使用JPA了。
关于java - jpa "dirty"交易,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12077700/
我在编程中经常看到术语“脏”或“脏对象”。 这是什么意思? 最佳答案 脏对象是内容已更改的对象,但此内容尚未同步回数据库/磁盘。这是缓存和存储之间不同步的典型情况。 关于dirty-data - 术语
我在工作中的一些源代码和其他一些代码中看到一些名为“dirty”的变量。这是什么意思?什么是脏旗? 最佳答案 一般来说,dirty flags用于指示某些数据已更改并且需要最终写入某个外部目的地。它不
我正在尝试通过这个演示项目来学习状态管理和依赖注入(inject)。我正在尝试演示在整个地方注入(inject)一些方法,就像我在程序中可能需要的那样。我使用 GetX 是因为我喜欢能够在非小部件类中
情况 我有一个 Web 应用程序,它使用 JPA 作为底层数据库的链接。当用户通过 UI 修改实体时,这些更改不会立即保存到数据库中。 问题 如何检查实体和底层数据库是否不同步(即实体脏)。 此外,是
我刚刚发现了 --dirty git describe 的选项看起来它应该做一些非常有用的事情,即在 git describe 的输出中附加一个后缀当工作树变脏时,但在我的某些存储库中情况似乎并非如此
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我在使用 时遇到一个问题$脏在我的申请表中。 问题是一旦您更改表单字段, 的值$脏将设置为 真实 但是现在,当您撤消更改时,它不会重置 $脏值为 假 . 我们可以重置 $脏值为 假 手动,但之后当您再
我的域类中有一个 transient 方法,它将更新该类的属性。当我使用此方法时,类不会被标记为脏并且不会保存。 class Major { String code String ma
我正在 AngularJS 中创建一个表单,我想验证这些字段,问题是只有在输入中写了一些东西并且在我删除它之后才会出现所需的消息,但我希望消息出现在聚焦输入之后 我的代码如下 Required! 最
我有一个下拉/选择指令,用于替换表单中的选择框。只要表单是原始的,我就设置禁用几个按钮。 app.directive('dropdown', function ($timeout) { ret
是否有任何方便的方法来检查我的应用程序模型是否已被用户更改?我需要它来向用户指示未保存的更改。 值得一提的是,我在应用程序中没有使用任何表单,并且我的 model 从应用程序的根组件向下渗透到子组件,
我正在使用 $window.addEventListener('beforeunload'... 来检测是否对页面进行了更改,并且它基本上按预期工作。我还使用 $transitions.onStart
使用 angularjs 进行表单验证我想在用户单击提交时将所有必填字段标记为错误。 我正在使用 input.ng-dirty.ng-invalid 来设置错误控件的样式。所以我想要的是在用户提交表单
我正在使用 angular-unsaved Changes 指令以及 angular 内置的表单 Controller 来检测表单是否为 $dirty。 我在特定页面上有一个表单,即使我编辑了元素,该
我在页面上有一个 ng 表单。在表单内部,我有几个控件需要在表单脏时显示保存对话框,即 form.$dirty = true。但是表单中有一些导航控件我不想弄脏表单。假设我无法将控件移出表单。 见:h
我有一个适用于所有脏字段和无效字段的 CSS 类: input.ng-dirty.ng-invalid, select.ng-dirty.ng-invalid, textarea.ng-dirty.n
我有一个实用程序,可以获取很多对象(具有相同的祖先)。 然后该实用程序将它们发布给其他客户端。我想添加差异的表示(例如包含所有“脏”字段的 map /列表)。 一般来说我该怎么做?或者我应该为每个对象
我使用 java、jpa(和 hibernate)编写了一个桌面应用程序。 我有一个页面,用户可以在其中编辑 bean 字段并将其保存到数据库。 bean 的字段codice 是唯一的。数据库有 2
我很难理解为什么我的元素在更新模型后显示 ng-dirty。 我有一组需要在 UI 上呈现的桥梁。在每次点击选项卡时,我都会更改索引并呈现数据。 如果我的第一个选项卡数据已更改并移动到第二个选项卡,为
我以前从未使用过 Angular 或 Angular2,但现在我必须对在我的域上运行的使用 Angular2 的站点进行更新。我需要以编程方式填写文本框并单击提交,但在使用 .value = "val
我是一名优秀的程序员,十分优秀!