标签: java jpa ejb
我有一个实体
@Entity class Cat { @Id long id; int lives = 9; public kill() { lives -= 1; } }
如果我在代码中的POJO之外的持久化上下文之外,有没有办法让这段代码在