资源简介
这是一个在线鞋城的购鞋网站的项目。主要功能是用户登录/查询产品/产品分页/添加购物车/删除购物车/订单管理/基础的Ajax运用等

代码片段和文件信息
package com.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.dao.iface.OrderDaoIface;
import com.domain.Order;
import com.domain.OrderList;
import com.domain.Product;
import com.util.DbConnection;
public class OrderDao implements OrderDaoIface{
@Override
public int count(String sql String userId) {
int result = 0;
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
conn = DbConnection.getConnection();
try {
ps = conn.prepareStatement(sql);
ps.setString(1 userId);
rs = ps.executeQuery();
if(rs.next()){
result = rs.getInt(1);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
DbConnection.close(rs ps conn);
}
return result;
}
@Override
public List pagingById(String sql String userIdint begin int end) {
List orderList = new ArrayList();
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
conn = DbConnection.getConnection();
try {
ps = conn.prepareStatement(sql);
ps.setString(1 userId);
ps.setInt(2 begin);
ps.setInt(3 end);
rs = ps.executeQuery();
while(rs.next()){
int orderId = rs.getInt(“order_id“);
Date createTime = rs.getTimestamp(“CREATE_TIME“);
System.out.println(createTime);
Double amount = rs.getDouble(“amount“);
Order order = new Order();
order.setOrderId(orderId);
order.setCreateTime(createTime);
order.setAmount(amount);
orderList.add(order);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
DbConnection.close(rs ps conn);
}
return orderList;
}
@Override
public Order queryOrder(String sql int orderId) {
Order order = null;
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
//String sql = “SELECT empno ename job sal FROM emp WHERE empno = ?“;
try {
conn = DbConnection.getConnection();
ps = conn.prepareStatement(sql);
ps.setInt(1 orderId);
rs = ps.executeQuery();
if (rs.next()){
int orderId1 = rs.getInt(“ORDER_ID“);
Date createTime = rs.getDate(“CREATE_TIME“);
Double amount = rs.getDouble(“AMOUNT“);
String payment = rs.getString(“PAYMENT“);
String receiver = rs.getString(“RECEIVER“);
String province = rs.getString(“PROVINCE“);
String city = rs.getString(“CITY“);
String county = rs.getString(“COUNTY“);
String address = rs.getString(“ADDRESS“);
String zipCode = rs.getString(“ZIPCODE“);
String telephone = rs.getString(“TELPHONE“);
String userId = rs.getString(“USER_ID“);
order= new Order(orderId1createTimeamountpaymentreceiverprovincecitycountyaddresszi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 834 2018-09-03 13:35 Shopstore\ShoesShop1\.classpath
文件 1043 2018-09-03 13:35 Shopstore\ShoesShop1\.project
文件 503 2018-09-03 13:35 Shopstore\ShoesShop1\.settings\.jsdtscope
文件 364 2018-09-03 13:35 Shopstore\ShoesShop1\.settings\org.eclipse.jdt.core.prefs
文件 482 2018-09-03 13:35 Shopstore\ShoesShop1\.settings\org.eclipse.wst.common.component
文件 345 2018-09-03 13:35 Shopstore\ShoesShop1\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2018-09-03 13:35 Shopstore\ShoesShop1\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2018-09-03 13:35 Shopstore\ShoesShop1\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 627 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\iface\OrderDaoIface.class
文件 990 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\iface\ProductDaoIface.class
文件 667 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\iface\ShoppingCartDaoIface.class
文件 219 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\iface\UserDaoIface.class
文件 6696 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\OrderDao.class
文件 9274 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\ProductDao.class
文件 5416 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\ShoppingCartDao.class
文件 1536 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\dao\UserDao.class
文件 942 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\Category.class
文件 3353 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\Order.class
文件 797 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\OrderList.class
文件 3959 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\Product.class
文件 2211 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\ShoppingCart.class
文件 1660 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\Slider.class
文件 1134 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\domain\User.class
文件 1663 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\filter\LoginFilter.class
文件 513 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\service\iface\OrderServiceIface.class
文件 798 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\service\iface\ProductIface.class
文件 557 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\service\iface\ShoppingCartIface.class
文件 213 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\service\iface\UserServiceIface.class
文件 2255 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\service\OrderService.class
文件 5083 2018-09-27 16:39 Shopstore\ShoesShop1\build\classes\com\service\ProductService.class
............此处省略466个文件信息
- 上一篇:HyperMesh从入门到精通-配套光盘
- 下一篇:票据通6.2.7免狗补丁
相关资源
- ModelGoon-4.4.1-site.zip
- oracle数据迁移项目实施方案
- mybatis连接oracle实例
- 超市收银系统eclipse access大学课程设计
- oracle ebs 11i总帐、应收、应付、库存、
- 解决Eclipse的ADT没有NDK选项的问题
- Eclipse编程技术与附CD-ROM光盘
- eclipse_jetty9离线插件
- 在eclipse中使用SVN的实现方法(图文教
- eclipse安卓工程相册、相机选择图片功
- site-1.6.5.zipeclipse 安装 svn 插件
- myeclipse9 注册机(自动生成注册码和激
- eclipse、idea代码模板
- eclipse统计代码工具
- Eclipse4.5汉化包 解压即可汉化
- birt调用存储过程.doc
- 计算机辅助设计系统在建筑设计中的
- MyEclipse2018.8.0破解
- myeclipse-2016-CI-6破解文件
- 讯飞人脸识别eclipse版
- 基于Eclipse编写的在线支付软件
- Eclipse专业配色方案 - 让编码更舒适高
- 度假村管理系统
- 基于MVC的网上书城系统
- eclipse jetty9.0 插件
- eclipse编写坦克游戏
- myeclipse2017 ci10 破解工具亲测可用
- Myeclipse 2015 CI 破解工具
- Eclipse64位4.3开普勒版eclipse-standard-ke
- eclipse主题配色Onedark
评论
共有 条评论