NotReadablePropertyException: Invalid property 'id' of bean class [java.util.ArrayList]

1869 단어 Java
문제 설명
Spring boot 프레임 워 크 를 사용 할 때 프레임 자체 jpa, artifactId: spring - boot - starter - data - jpa 를 통합 합 니 다.
jpa 의 Repository 로 데이터 List 를 대량으로 저장 할 때 이 이상 을 던 져 서 추가 할 데이터 에 문제 가 없 는 지 반복 적 으로 검 사 했 지만 저장 할 때 실패 하고 이상 을 던 졌 습 니 다.
public static  List batchSave(List voList, Class clazz, JpaRepository repository) {
        List entities = new ArrayList<>(voList.size());
        try {
            for (T vo : voList) {
                K entity = clazz.newInstance();
                BeanUtils.copyProperties(vo, entity);
                Method setID = clazz.getMethod(SET_ID, Long.class);
                setID.invoke(entity, generateID());
                entities.add(entity);
            }
            repository.save(entities);
        } catch (Exception e) {
            e.printStackTrace();
            ErrorUtil.message(ResponseEnum.DATA_ERROR);
        }
        return entities;
    }

해결 방법 
해결 방법 은 간단 하 다. Spring Boot 2.0 이후 jpa 의 Repository 대량 저장 인 터 페 이 스 는 더 이상 이전의 save 방법 이 아니 라 saveAll 이기 때문에 호출 된 저장 방법 만 바 꾸 면 된다.
public static  List batchSave(List voList, Class clazz, JpaRepository repository) {
        List entities = new ArrayList<>(voList.size());
        try {
            for (T vo : voList) {
                K entity = clazz.newInstance();
                BeanUtils.copyProperties(vo, entity);
                Method setID = clazz.getMethod(SET_ID, Long.class);
                setID.invoke(entity, generateID());
                entities.add(entity);
            }
            repository.saveAll(entities);
        } catch (Exception e) {
            e.printStackTrace();
            ErrorUtil.message(ResponseEnum.DATA_ERROR);
        }
        return entities;
    }

 

좋은 웹페이지 즐겨찾기