这就是我从save(entity)方法获取id的方法:
Serializable save = hibernateTemplate.save(article);
return Integer.valueOf(save.toString());
作为一个完整的冬眠菜鸟,我只是想知道这是否是正确的方法呢? 我会感激任何建议。
答案 0 :(得分:2)
我认为没有必要使用Integer.valueOf(save.toString);
因为你知道你的标识符的类型和Hibernate。您可以使用(Integer)save
。