JdbcTemplate に関しては、次のコードを使用して結果セットを取得しています。
List<Book> bookList = jdbcTemplate.query(
constructQueryStatement(),
new Object[] {row_start, row_end},
new BookRowMapper());
とにかく、上記のコードは私にこの警告を与えています:
Type safety: The expression of type List needs unchecked conversion to conform to List<Book>
この警告は、 jdbcTemplate.query() がType
未知のリストを返すことから来ていると思いますList<Book>
。を使用する以外に、この警告を克服する方法はあり@SuppressWarnings 'unchecked'
ますか?