调用 genericmodel validateAndSave 方法不会自动生成记录 ID
我有以下创建/保存用户记录的代码,数据库是默认(内存中的 H2)数据库。
我希望在用户实例上调用 validateAndSave (GenericModel) API 后,用户将自动生成一个 id。
但我在客户端收到 404,即 get 方法中的 notFoundIfNull 代码失败。
这是正确的行为吗?
public static void add(String body) {
User user = new Gson().fromJson(body, User.class);
if (User.findBy(user.email) != null) {
badRequest();
}
user.validateAndSave();
get(user.id);
}
public static void get(Long id) {
User user = User.findBy(id);
notFoundIfNull(user);
render(user);
}
I have the following code that create/save a user record, the database is the default (H2 in memory) database.
I expect that, after calling validateAndSave (of GenericModel) API on the user instance, the user will have an id autogenerated.
But I am getting a 404 at client side, ie, the code failed on notFoundIfNull in get method.
Is that correct behavior?
public static void add(String body) {
User user = new Gson().fromJson(body, User.class);
if (User.findBy(user.email) != null) {
badRequest();
}
user.validateAndSave();
get(user.id);
}
public static void get(Long id) {
User user = User.findBy(id);
notFoundIfNull(user);
render(user);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否检查过是否将 null 作为 id 传递给
get
?您很可能是这样,因为您内存中的用户尚未刷新。如果你必须重用id,请尝试这样做:
我没有添加验证,因为现在你没有用它做任何事情。 ValidateAndSave(请参阅代码) 如果验证成功则返回 true,否则返回 false。您忽略了它,所以使用该方法没有意义。
如果你仍然想验证,最好分开步骤:先验证,然后保存以获得新的id。
Have you checked if you are passing a null as id to
get
? Most likely you are, as the user you have in memory will have not been refreshed.If you have to reuse the id try to do this:
I'm not adding validation, as right now you are not doing anything with it. ValidateAndSave (see code) returns true if the validation was ok, false otherwise. You are ignoring it, so no point on using that method.
If you still want to validate, better separate the steps: first validate and then save to obtain the new id.