리포지토리
// @OneToMany에 LAZY일 때, 객체를 호출할 때마다 select 쿼리 날라감
List<Aquarium> findByUserId(int userId);
// LAZY인데 EAGER처럼 fishList를 처음부터 가져오게
@EntityGraph(attributePaths = "fishList")
@Query("SELECT a FROM Aquarium a WHERE a.user.id = :userId")
List<Aquarium> findByUserIdEagerFishList(@Param("userId") int userId);
@EntityGraph