Я пытаюсь использовать ResultSetHandler, чтобы передать список студентов сервлету, но получаю ошибку ниже
java.lang.NumberFormatException: For input string: "id"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
метод в классе ученика
public List<Student> list2() throws SQLException {
Connection connection = null;
List<Student> studentList = null;
try {
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource)
envCtx.lookup("jdbc/TestDB");
connection = ds.getConnection();
ResultSetHandler h = new ArrayListHandler();
QueryRunner run = new QueryRunner(ds);
String sql = "select student_id, student_name from tbl_student";
studentList = (List<Student>)run.query(sql, h);
}catch(SQLException sqle) {
sqle.printStackTrace();
}
catch(Exception e) {
e.printStackTrace();
}
finally {
DbUtils.closeQuietly(connection);
}
return studentList;
}
альтернативный метод, где яя не использую DButils работает нормально.
public List<Student> list() throws SQLException {
Connection connection = null;
Statement statement = null;
ResultSet resultSet = null;
List<Student> studentList = new ArrayList<Student>();
try {
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource)
envCtx.lookup("jdbc/TestDB");
connection = ds.getConnection();
statement = connection.createStatement();
resultSet = statement.executeQuery("select student_id, student_name from tbl_student");
while (resultSet.next()) {
Student student = new Student();
student.setId(resultSet.getInt("student_id"));
student.setName(resultSet.getString("student_name"));
studentList.add(student);
}
}catch(SQLException e) {
e.printStackTrace();
}
catch(Exception e) {
e.printStackTrace();
}
finally {
if (resultSet != null) try { resultSet.close(); } catch (SQLException logOrIgnore) {}
if (statement != null) try { statement.close(); } catch (SQLException logOrIgnore) {}
if (connection != null) try { connection.close(); } catch (SQLException logOrIgnore) {}
}
return studentList;
}
Как я могу решить эту проблему?