分页查询产品信息:第四步:创建持久化层ProductDAO

第四步:创建持久化层ProductDAO

public List findAll() throws SQLException{

QueryRunner runner = new QueryRunner(JdbcUtils.getDataSource());

return runner.query(“select * from product”,new BeanListHandler(Product.class));

}

你可能感兴趣的:(一起学习jQuery)