我有一个应用程序,它有一个表格,当您单击表格中的一个项目时,它会使用其数据(FieldGroup)填充一组文本字段,然后您可以选择保存更改我想知道如何保存用户对我的 postgres 数据库所做的更改。我正在为这个应用程序使用 vaadin 和 hibernate。到目前为止,我已经尝试过
editorField.commit() // after the user clicks the save button
我努力了
editorField.commit()
hbsession.persist(editorField) //hbsession is the name of my Session
我也试过
editorField.commit();
hbsession.save(editorField);
最后两个给我以下错误
Caused by: org.hibernate.SessionException: Session is closed!