我有一个App Engine端点,在修改某些实体字段并返回响应之前必须调用{
"user":
{
"cobrandName": "Name of the cobrand",
"loginName": "sbMemxxxxxxxxxxxxx",
"password": "xxxxxxxxxxxxxxx"
}
}
。但每次我看到以下日志充斥着我的开发者控制台日志。我怎样才能抑制这种令人讨厌和不必要的警告呢?
detach()
答案 0 :(得分:0)
我只需要将EntityManager FlushModeType配置为COMMIT,而不是在调用commit()
后调用任何内容。