У меня есть список, который повторяется через цикл for-each.Так что я хочу, чтобы однажды значение, установленное в customerAttemptTemp.setIsActive("N") customerAttemptTemp.setAttemptCount();
установленное значение, было равно 1.
наконец, размер списка клиентов customerAttemptList 5 Количество попыток должно быть 5.
это сегмент кода.
List<CustomerAttempt> customerAttemptList = customerAttemptService.findCustomerAttempts(customerAttemptWrong, _serviceContext);
for (CustomerAttempt customerAttemptTemp : customerAttemptList) {
customerAttemptTemp.setIsActive("N");
customerAttemptTemp.setIsActive( // **Where the count need to be updated**);
customerAttemptService.update(customerAttemptTemp, _serviceContext);
}