4. 마찬가지로 BookRepositoryImpl 클래스에서 데이터베이스와 연동할 수 있게 getBookById() 메서드를 다음과 같이 수정합니다.
코드 17-12 BookRepositoryImpl.java
package com.springmvc.repository.impl;
...
@Repository
public class BookRepositoryImpl implements BookRepository {
...
➊
public Book getBookById(String bookId) {
Book bookInfo = null;
String SQL = "SELECT count(*) FROM book where b_bookId=?"; ➋
int rowCount = template.queryForObject(SQL, Integer.class, bookId); ➌
if (rowCount != 0) {
SQL = "SELECT * FROM book where b_bookId=?"; ➍
bookInfo = template.queryForObject(SQL, new Object[] { bookId }, new BookRowMapper()); ➎
}
if (bookInfo == null)
throw new BookIdException(bookId);
return bookInfo;
}
}