@SuppressWarnings({ "unchecked", "rawtypes" })
public int save(Orders order) {
String sql = "INSERT INTO orders(orderDate,orderPrice,orderStatus,userId) VALUES(?,?,?,?);";
String sql2 = "select last_insert_id() from orders";
try {
JdbcUtils.getQueryRunner().update(sql, order.getOrderDate(),
order.getOrderPrice(), order.getOrderStatus(),
order.getUserId());
return JdbcUtils.getQueryRunner().query(sql2,
new ScalarHandler());
} catch (Exception e) {
throw new RuntimeException();
}
}
首先说明:我的代码是第一条sql语句插入数据,第二条返回刚刚存入的数据id。
一开始我的代码如上图所示,执行的时候一直抛出异常,百度搜了很多方法,
有的说JdbcUtils.getQueryRunner().query(sql2, new ScalarHandler())先转换成long,再转换成int;我试了一下不对。
又把catch里改成了:e.e.printStackTrace();这次会输出准确的异常,java.lang.ClassCastException: java.math.BigInteger cannot be cast to java.lang.Long。我又修改了jar包,改成了mysql-connector-java-5.1.46。
可是还没解决,最后的正确代码就是:
public int save(Orders order) {
String sql = "INSERT INTO orders(orderDate,orderPrice,orderStatus,userId) VALUES(?,?,?,?);";
String sql2 = "select last_insert_id() from orders";
try {
JdbcUtils.getQueryRunner().update(sql, order.getOrderDate(),
order.getOrderPrice(), order.getOrderStatus(),
order.getUserId());
String orderId = (JdbcUtils.getQueryRunner().query(sql2,
new ScalarHandler())).toString();
return Integer.valueOf(orderId);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException();
}
}
花费了两个多小时才解决问题,记录下来以便看到的人尽快解决。