购物网站(测试+步骤+代码)

一、功能需求
1、只有注册用户成功登录之后才可查看商品类别,查看商品,选购商品,生成订单、查看订单。

2、只有管理员才有权限进入购物网后台管理,进行用户管理、类别管理、商品管理与订单管理。

二、设计思路
1、采用MVC设计模式
在这里插入图片描述
分层架构:展现层(JSP)<——>控制层(Servlet)<——>业务层(Service)<——>模型层(Dao)<——>数据库(DB)

2、前台

(1)登录——显示商品类别——显示某类商品信息——查看购物车——生成订单——支付

(2)注册<——>登录

3、后台

(1)用户管理:用户的增删改查

(2)类别管理:商品类别的增删改查

(3)商品管理:商品的增删改查

(4)订单管理:订单的查看与删除

说明:只完成了用户管理中的查看用户功能。其他功能,有兴趣的不妨拿来操练一下。

4、西蒙购物网业务流程图
在这里插入图片描述

三、实现步骤
在这里插入图片描述

(一)创建数据库
在这里插入图片描述
创建MySQL数据库simonshop,包含四张表:用户表(t_user)、类别表(t_category)、商品表(t_product)和订单表(t_order)。

1、用户表t_user

(1)表结构
在这里插入图片描述

(2)表记录

在这里插入图片描述

2、类别表t_category

(1)表结构
在这里插入图片描述

(2)表记录
在这里插入图片描述

3、商品表t_product

(1)表结构

在这里插入图片描述

(2)表记录

在这里插入图片描述

4、订单表t_order

(1)表结构
在这里插入图片描述

(2)表记录
在这里插入图片描述

(二)创建Web项目simonshop

1、创建Web项目simonshop
在这里插入图片描述

2、在项目结构窗口里设置Artifacts名称:simonshop

在这里插入图片描述

3、配置服务器(Server)

在这里插入图片描述

4、设置部署(Deployment)
在这里插入图片描述
(三)创建实体类

在src里创建net.hw.shop.bean包,创建四个实体类:User、Category、Product与Order,与四张表t_user、t_category、t_product与t_order一一对应。

1、用户实体类User
在这里插入图片描述
package net.hw.shop.bean;

/**

  • 功能:用户实体类
  • 作者:谭琮建
  • 日期:2019年12月2日
    */
    import java.util.Date;

public class User {
/**
* 用户标识符
/
private int id;
/
*
* 用户名
/
private String username;
/
*
* 密码
/
private String password;
/
*
* 电话号码
/
private String telephone;
/
*
* 注册时间
/
private Date registerTime;
/
*
* 权限(0:管理员;1:普通用户)
*/
private int popedom;

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

public String getUsername() {
    return username;
}

public void setUsername(String username) {
    this.username = username;
}

public String getPassword() {
    return password;
}

public void setPassword(String password) {
    this.password = password;
}

public String getTelephone() {
    return telephone;
}

public void setTelephone(String telephone) {
    this.telephone = telephone;
}

public Date getRegisterTime() {
    return registerTime;
}

public void setRegisterTime(Date registerTime) {
    this.registerTime = registerTime;
}

public int getPopedom() {
    return popedom;
}

public void setPopedom(int popedom) {
    this.popedom = popedom;
}

@Override
public String toString() {
    return "User{" +
            "id=" + id +
            ", username='" + username + '\'' +
            ", password='" + password + '\'' +
            ", telephone='" + telephone + '\'' +
            ", registerTime=" + registerTime +
            ", popedom=" + popedom +
            '}';
}

 

在这里插入图片描述

package net.hw.shop.bean;

/**

 

 

public class Product {
/**
* 商品标识符
/
private int id;
/
*
* 商品名称
/
private String name;
/
*
* 商品单价
/
private double price;
/
*
* 商品上架时间
/
private Date addTime;
/
*
* 商品所属类别标识符
*/
private int categoryId;

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public double getPrice() {
    return price;
}

public void setPrice(double price) {
    this.price = price;
}

public Date getAddTime() {
    return addTime;
}

public void setAddTime(Date addTime) {
    this.addTime = addTime;
}

public int getCategoryId() {
    return categoryId;
}

public void setCategoryId(int categoryId) {
    this.categoryId = categoryId;
}

@Override
public String toString() {
    return "Product{" +
            "id=" + id +
            ", name='" + name + '\'' +
            ", price=" + price +
            ", addTime=" + addTime +
            ", categoryId=" + categoryId +
            '}';
}

 

  • 2、类别实体类Category

    在这里插入图片描述

    package net.hw.shop.bean;

    /**

  • 功能:商品类别实体类

  • 作者:谭琮建

  • 日期:2019年12月2日
    /
    public class Category {
    /
    *

    • 类别标识符
      /
      private int id;
      /
      *
    • 类别名称
      */
      private String name;

    public int getId() {
    return id;
    }

    public void setId(int id) {
    this.id = id;
    }

    public String getName() {
    return name;
    }

    public void setName(String name) {
    this.name = name;
    }

    @Override
    public String toString() {
    return “Category{” +
    “id=” + id +
    “, name=’” + name + ‘’’ +
    ‘}’;
    }
    }
    3、商品实体类Product

  • 功能:商品实体类
  • 作者:谭琮建
  • 日期:2019年12月2日
    */
    import java.util.Date;

4、订单实体类Order
在这里插入图片描述

package net.hw.shop.bean;

/**

  • 功能:订单实体类
  • 作者:谭琮建
  • 日期:2019年12月2日
    */
    import java.util.Date;

public class Order {
/**
* 订单标识符
/
private int id;
/
*
* 用户名
/
private String username;
/
*
* 联系电话
/
private String telephone;
/
*
* 订单总金额
/
private double totalPrice;
/
*
* 送货地址
/
private String deliveryAddress;
/
*
* 下单时间
*/
private Date orderTime;

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

public String getUsername() {
    return username;
}

public void setUsername(String username) {
    this.username = username;
}

public String getTelephone() {
    return telephone;
}

public void setTelephone(String telephone) {
    this.telephone = telephone;
}

public double getTotalPrice() {
    return totalPrice;
}

public void setTotalPrice(double totalPrice) {
    this.totalPrice = totalPrice;
}

public String getDeliveryAddress() {
    return deliveryAddress;
}

public void setDeliveryAddress(String deliveryAddress) {
    this.deliveryAddress = deliveryAddress;
}

public Date getOrderTime() {
    return orderTime;
}

public void setOrderTime(Date orderTime) {
    this.orderTime = orderTime;
}

@Override
public String toString() {
    return "Order{" +
            "id=" + id +
            ", username='" + username + '\'' +
            ", telephone='" + telephone + '\'' +
            ", totalPrice=" + totalPrice +
            ", deliveryAddress='" + deliveryAddress + '\'' +
            ", orderTime=" + orderTime +
            '}';
}
  •  
  • (四)创建数据库工具类ConnectionManager

1、在web\WEB-INF目录下创建lib子目录,添加MySQL驱动程序的jar包
在这里插入图片描述

2、在src下创建net.hw.shop.dbutil包,在里面创建ConnectionManager类
在这里插入图片描述

package net.hw.shop.dbutil;

/**

  • 功能:数据库连接管理类
  • 作者:谭琮建
  • 日期:2019年12月2日
    */

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

import javax.swing.JOptionPane;

public class ConnectionManager {
/**
* 数据库驱动程序
/
private static final String DRIVER = “com.mysql.jdbc.Driver”;
/
*
* 数据库统一资源标识符
/
private static final String URL = “jdbc:mysql://localhost:3306/simonshop”;
/
*
* 数据库用户名
/
private static final String USERNAME = “root”;
/
*
* 数据库密码
*/
private static final String PASSWORD = “P@ssw0rd”;

/**
 * 私有化构造方法,拒绝实例化
 */
private ConnectionManager() {
}

/**
 * 获取数据库连接静态方法
 *
 * @return 数据库连接对象
 */
public static Connection getConnection() {
    // 定义数据库连接
    Connection conn = null;
    try {
        // 安装数据库驱动程序
        Class.forName(DRIVER);
        // 获得数据库连接
        conn = DriverManager.getConnection(URL
                + "?useUnicode=true&characterEncoding=UTF8", USERNAME, PASSWORD);
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    // 返回数据库连接
    return conn;
}

/**
 * 关闭数据库连接静态方法
 *
 * @param conn
 */
public static void closeConnection(Connection conn) {
    // 判断数据库连接是否为空
    if (conn != null) {
        // 判断数据库连接是否关闭
        try {
            if (!conn.isClosed()) {
                // 关闭数据库连接
                conn.close();
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

/**
 * 测试数据库连接是否成功
 *
 * @param args
 */
public static void main(String[] args) {
    // 获得数据库连接
    Connection conn = getConnection();
    // 判断是否连接成
  • 5
    点赞
  • 78
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值