我尝试在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