You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
findLatestByUserId() 메소드는 Page를 반환하도록 선언했으므로 getContent() 메소드를 통해 List로 변환 후 isEmpty() 메소드를 통해 ScreenTime 엔티티의 존재성을 검사해야 한다. 만약 존재하지 않는다면 (isEmpty() == true 라면) ScreenTimeNotFoundException을 발생시키고, 존재한다면 get(0) 메소드를 통해 스크린 타임 엔티티를 가져온다.
The text was updated successfully, but these errors were encountered:
조회
다음은 userId를 사진 사용자의 최신 스크린 타임을 반환하는 서비스 코드의 일부이다.
findLatestByUserId() 메소드는 Page를 반환하도록 선언했으므로 getContent() 메소드를 통해 List로 변환 후 isEmpty() 메소드를 통해 ScreenTime 엔티티의 존재성을 검사해야 한다. 만약 존재하지 않는다면 (isEmpty() == true 라면) ScreenTimeNotFoundException을 발생시키고, 존재한다면 get(0) 메소드를 통해 스크린 타임 엔티티를 가져온다.
The text was updated successfully, but these errors were encountered: