如何更改已弃用的HibernateEntityManagerFactory(5.2.10)以添加侦听器?

时间:2017-07-26 20:19:14

标签: hibernate listener factory deprecated

我尝试在hibernate(5.2.10)实体中添加监听器,以便在更改后获取新旧值。我使用SpringBoot和public static void main(final String[] args) { // ... new Label(s, SWT.NONE).setText("C"); final Button c = new Button(s, SWT.CHECK); new Label(s, SWT.NONE).setText("L1"); final MyButton b = new MyButton(s, "Button 1"); // ... c.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(final SelectionEvent e) { b.setEnabled(!b.isEnabled()); } }); // ... } ,但是这个类标记了"已弃用"。 我怎样才能更改代码,删除已弃用的类?

现在我做这样的事情:

org.hibernate.HibernateEntityManagerFactory

1 个答案:

答案 0 :(得分:0)

您应该实现休眠的2 options

下面是一个示例:Integrator