Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更新现有记录,但要创建新记录。
在下图中的用户界面中,我单击提交按钮,它应该更新它已经在数据库中的数据。
这不起作用,因为创建了一个新条目。
public void onSave() { carRepository.save(car); // (idea:on save if the data exists update the one or create new one) }