$$FastClassBySpringCGLIB$$d4fdbaae.invoke - 시점에서 nullpointerexception

Yunny.Log ·2022년 8월 11일
0

Debugging

목록 보기
37/69
post-thumbnail
List<RouteProduct> routeProductLists = routeProductRepository.
findByRouteProducts(routeListReal);

그냥 평범한 findBy JPA 문인데 ?
컨트롤러에서 너무 잡다한 것들 처리해서 그런 것으로 추정

  • controller 에서 레포지토리 처리들을 하지 말고,

  • service 에서 한번에 진행한 뒤 이를 컨트롤러에 한번에 넘겨주는 것으로!

  • 서비스 단에서 @transactional 을 통해 한번에 진행시켜주기

0개의 댓글