我一直在尝试修复此错误:
{"exception":"Persistent class \"Class org.myapp.model.Account 似乎没有得到增强。您可能需要重新运行增强器并检查输出中的错误。\" 数据库中没有表,但操作需要它。请检查该类的元数据规范。"}
我试过清理项目
这是我要坚持的实体:
@SuppressWarnings("serial")
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Account implements Serializable {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;
@Persistent
private String username;
@Persistent
private String password;
public Account() {
}
// Code omitted
}
我该如何解决这个问题?