我在数据库中存储了10个学生对象,我将获得所有这10个对象并显示在UI中,假设用户将修改2个对象的值并提交(它将完整的10个对象发送到后端)。>
如何获取唯一的更新对象并将这些更新对象保存在db中。
公共班学生{
private String rollNo;
private String firstName;
private String lastName;
private String salary;
//获取器和设置器 }
List<Student> studentList1 = new ArrayList<Student>();//10 Student objects
List<Student> studentList2 = new ArrayList<Student>();//It contain 10
objects out of which 2 objects salary was different from studentList1.
比较两个列表,获得薪水不同的两条记录。