作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 ResultSetHandler 将学生列表传递给 servlet,但出现以下错误
java.lang.NumberFormatException: For input string: "id"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
Student类中的方法是
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;
}
我该如何解决这个问题?
最佳答案
我建议您使用 BeanListHandler 从 ResultSet 中获取所有行并将它们转换为 JavaBean 列表,如下所示:
QueryRunner queryRunner = new QueryRunner(dataSource);
ResultSetHandler<List<Student>> resultSetHandler = new BeanListHandler<Student>(Student.class);
List<Student> studentList = queryRunner.query("SELECT student_id, student_name FROM tbl_student", resultSetHandler);
关于java - DBUtils - 使用 ResultSetHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9588034/
1.概述 转载:核心配置综述之 ResultSetHandler 我们之前介绍过了MyBatis 四大核心配置之 Executor、StatementHandler、 ParameterHandler
我正在尝试使用 ResultSetHandler 将学生列表传递给 servlet,但出现以下错误 java.lang.NumberFormatException: For input string:
我是一名优秀的程序员,十分优秀!