我正在使用 SQL Server 2008,OpenJPA 2.2
持久性设置可以正常findAll()
工作。
我试过了:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id = 0;
并坚持
public void persist()
{
EntityManager em = entityManager();
try
{
em.persist(this);
}
catch (Exception ex)
{
System.out.println(ex);
}
finally
{
em.close();
}
}
结果也不例外,但没有插入数据。