Java Web实训项目:西蒙购物网(Simonshop)
一、功能需求
1、只有注册用户成功登录之后才可查看商品类别,查看商品,选购商品,生成订单、查看订单。
2、只有管理员才有权限进入购物网后台管理,进行用户管理、类别管理、商品管理与订单管理。
二、设计思路
三、实现步骤
一、创建数据库
创建MySQL数据库simonshop,包含四张表:用户表(t_user)、类别表(t_category)、商品表(t_product)和订单表(t_order)。
二、创建Web项目Simonshop
1.创建Web项目Simonshop
2.创建实体类
在src里创建net.xsp.shop.bean包,创建四个实体类:User、Category、Product与Order,与四张表t_user、t_category、t_product与t_order一一对应。
- 用户实体类User
package net.xsp.shop.bean;
/**
* 功能:用户实体类
* 作者:向仕平
* 日期:2019年12月5日
*/
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 +
'}';
}
}
- 类别实体类Category
package net.xsp.shop.bean;
/**
* 功能:商品类别实体类
* 作者:向仕平
* 日期:2019年12月5日
*/
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 + '\'' +
'}';
}
}
- 商品实体类Product
package net.xsp.shop.bean;
/**
* 功能:商品实体类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.Date;
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 +
'}';
}
}
- 订单实体类Order
package net.xsp.shop.bean;
/**
* 功能:订单实体类
* 作者:向仕平
* 日期:2019年12月5日
*/
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 +
'}';
}
}
3.在src下创建net.xsp.shop.dbutil包,在里面创建ConnectionManager类,并添加jar包
package net.xsp.shop.dbutil;
/**
* 功能:数据库连接管理类
* 作者:向仕平
* 日期:2019年12月5日
*/
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 = "1";
/**
* 私有化构造方法,拒绝实例化
*/
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();
// 判断是否连接成功
if (conn != null) {
JOptionPane.showMessageDialog(null, "恭喜,数据库连接成功!");
} else {
JOptionPane.showMessageDialog(null, "遗憾,数据库连接失败!");
}
// 关闭数据库连接
closeConnection(conn);
}
}
运行程序,查看结果:
4.数据访问接口
在src里创建net.xsp.shop.dao包,在里面创建UserDao、CategoryDao、ProductDao与OrderDao。
- 用户数据访问接口UserDao
package net.xsp.shop.dao;
/**
* 功能:用户数据访问接口
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.User;
public interface UserDao {
// 插入用户
int insert(User user);
// 按标识符删除用户
int deleteById(int id);
// 更新用户
int update(User user);
// 按标识符查询用户
User findById(int id);
// 按用户名查询用户
List<User> findByUsername(String username);
// 查询全部用户
List<User> findAll();
// 用户登录
User login(String username, String password);
}
- 类别数据访问接口CategoryDao
package net.xsp.shop.dao;
/**
* 功能:类别数据访问接口
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.Category;
public interface CategoryDao {
// 插入类别
int insert(Category category);
// 按标识符删除类别
int deleteById(int id);
// 更新类别
int update(Category category);
// 按标识符查询类别
Category findById(int id);
// 查询全部类别
List<Category> findAll();
}
- 商品数据访问接口ProductDao
package net.xsp.shop.dao;
/**
* 功能:商品数据访问接口
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.Product;
public interface ProductDao {
// 插入商品
int insert(Product product);
// 按标识符删除商品
int deleteById(int id);
// 更新商品
int update(Product product);
// 按标识符查询商品
Product findById(int id);
// 按类别查询商品
List<Product> findByCategoryId(int categoryId);
// 查询全部商品
List<Product> findAll();
}
- 订单数据访问接口OrderDao
package net.xsp.shop.dao;
/**
* 功能:订单数据访问接口
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.Order;
public interface OrderDao {
// 插入订单
int insert(Order order);
// 按标识符删除订单
int deleteById(int id);
// 更新订单
int update(Order order);
// 按标识符查询订单
Order findById(int id);
// 查询最后一个订单
Order findLast();
// 查询全部订单
List<Order> findAll();
}
5.数据访问接口实现类XXXDaoImpl
在src下创建net.xsp.shop.dao.impl包,在里面创建UserDaoImpl、CategoryDaoImpl、ProductDaoImpl与OrderDaoImpl。
(1)用户数据访问接口实现类UserDaoImpl
- 用户数据访问接口实现类UserDaoImpl
package net.xsp.shop.dao.impl;
/**
* 功能:用户数据访问接口实现类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import net.xsp.shop.bean.User;
import net.xsp.shop.dao.UserDao;
import net.xsp.shop.dbutil.ConnectionManager;
public class UserDaoImpl implements UserDao {
/**
* 插入用户
*/
@Override
public int insert(User user) {
// 定义插入记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "INSERT INTO t_user (username, password, telephone, register_time, popedom)"
+ " VALUES (?, ?, ?, ?, ?)";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, user.getUsername());
pstmt.setString(2, user.getPassword());
pstmt.setString(3, user.getTelephone());
pstmt.setTimestamp(4, new Timestamp(user.getRegisterTime().getTime()));
pstmt.setInt(5, user.getPopedom());
// 执行更新操作,插入新记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回插入记录数
return count;
}
/**
* 删除用户记录
*/
@Override
public int deleteById(int id) {
// 定义删除记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "DELETE FROM t_user WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行更新操作,删除记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回删除记录数
return count;
}
/**
* 更新用户
*/
@Override
public int update(User user) {
// 定义更新记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "UPDATE t_user SET username = ?, password = ?, telephone = ?,"
+ " register_time = ?, popedom = ? WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, user.getUsername());
pstmt.setString(2, user.getPassword());
pstmt.setString(3, user.getTelephone());
pstmt.setTimestamp(4, new Timestamp(user.getRegisterTime().getTime()));
pstmt.setInt(5, user.getPopedom());
pstmt.setInt(6, user.getId());
// 执行更新操作,更新记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回更新记录数
return count;
}
/**
* 按标识符查询用户
*/
@Override
public User findById(int id) {
// 声明用户
User user = null;
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_user WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行SQL查询,返回结果集
ResultSet rs = pstmt.executeQuery();
// 判断结果集是否有记录
if (rs.next()) {
// 实例化用户
user = new User();
// 利用当前记录字段值去设置商品类别的属性
user.setId(rs.getInt("id"));
user.setUsername(rs.getString("username"));
user.setPassword(rs.getString("password"));
user.setTelephone(rs.getString("telephone"));
user.setRegisterTime(rs.getTimestamp("register_time"));
user.setPopedom(rs.getInt("popedom"));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回用户
return user;
}
@Override
public List<User> findByUsername(String username) {
// 声明用户列表
List<User> users = new ArrayList<User>();
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_user WHERE username = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, username);
// 执行SQL查询,返回结果集
ResultSet rs = pstmt.executeQuery();
// 遍历结果集
while (rs.next()) {
// 创建类别实体
User user = new User();
// 设置实体属性
user.setId(rs.getInt("id"));
user.setUsername(rs.getString("username"));
user.setPassword(rs.getString("password"));
user.setTelephone(rs.getString("telephone"));
user.setRegisterTime(rs.getTimestamp("register_time"));
user.setPopedom(rs.getInt("popedom"));
// 将实体添加到用户列表
users.add(user);
}
// 关闭结果集
rs.close();
// 关闭语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回用户列表
return users;
}
@Override
public List<User> findAll() {
// 声明用户列表
List<User> users = new ArrayList<User>();
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_user";
try {
// 创建语句对象
Statement stmt = conn.createStatement();
// 执行SQL,返回结果集
ResultSet rs = stmt.executeQuery(strSQL);
// 遍历结果集
while (rs.next()) {
// 创建用户实体
User user = new User();
// 设置实体属性
user.setId(rs.getInt("id"));
user.setUsername(rs.getString("username"));
user.setPassword(rs.getString("password"));
user.setTelephone(rs.getString("telephone"));
user.setRegisterTime(rs.getTimestamp("register_time"));
user.setPopedom(rs.getInt("popedom"));
// 将实体添加到用户列表
users.add(user);
}
// 关闭结果集
rs.close();
// 关闭语句对象
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回用户列表
return users;
}
/**
* 登录方法
*/
@Override
public User login(String username, String password) {
// 定义用户对象
User user = null;
// 获取数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_user WHERE username = ? AND password = ?";
try {
// 创建预备语句对象
PreparedStatement psmt = conn.prepareStatement(strSQL);
// 设置占位符的值
psmt.setString(1, username);
psmt.setString(2, password);
// 执行查询,返回结果集
ResultSet rs = psmt.executeQuery();
// 判断结果集是否有记录
if (rs.next()) {
// 实例化用户对象
user = new User();
// 用记录值设置用户属性
user.setId(rs.getInt("id"));
user.setUsername(rs.getString("username"));
user.setPassword(rs.getString("password"));
user.setTelephone(rs.getString("telephone"));
user.setRegisterTime(rs.getDate("register_time"));
user.setPopedom(rs.getInt("popedom"));
}
// 关闭结果集
rs.close();
// 关闭预备语句
psmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回用户对象
return user;
}
}
- 在test文件夹里创建net.xsp.shop.dao.impl包,在里面创建测试类TestUserDaoImpl:
(1).编写测试登录方法testLogin()
@Test
public void testLogin() {
String username, password;
username = "admin";
password = "12345";
// 父接口指向子类对象
UserDao userDao = new UserDaoImpl();
User user = userDao.login(username, password);
// 判断用户登录是否成功
if (user != null) {
System.out.println("恭喜,登录成功!");
} else {
System.out.println("遗憾,登录失败!");
}
}
运行单元测试方法testLogin():
修改一下登录密码,再进行单元测试,看结果如何:
(2).编写测试方法testUpdate()
将用户【涂文艳】的密码改为“903213",电话改为“13945457890”。涂文艳用户的id是4。
@Test
public void testUpdate() {
// 定义用户数据访问对象
UserDao userDao = new UserDaoImpl();
// 找到id为4的用户
User user = userDao.findById(4);
// 修改用户名密码与电话
user.setPassword("903213");
// 利用用户数据访问对象的更新方法更新用户
int count = userDao.update(user);
// 判断更新用户是否成功
if (count > 0) {
System.out.println("恭喜,用户更新成功!");
} else {
System.out.println("遗憾,用户更新失败!");
}
// 再次查询id为4的用户
user = userDao.findById(4);
// 输出该用户的信息
System.out.println(user);
}
运行单元测试方法testUpdate(),结果如下:
修改一下测试代码再测试,结果如下:
(3).编写测试方法testFindById()
@Test
public void testFindById() {
// 定义用户数据访问对象
UserDao userDao = new UserDaoImpl();
// 找到id为2的用户
User user = userDao.findById(2);
// 判断查询是否成功
if (user != null) {
System.out.println("恭喜,查询成功!");
} else {
System.out.println("遗憾,查询失败!");
}
// 输出该用户的信息
System.out.println(user);
}
运行单元测试方法testFindById(),结果如下:
修改id:
(4).编写测试方法testFindByUsername()
@Test
public void testFindByUsername() {
// 定义用户数据访问对象
UserDao userDao = new UserDaoImpl();
// 找到username为涂文艳的用户
String username = "涂文艳";
List<User> user = userDao.findByUsername(username);
// 判断查询是否成功
if (user != null) {
System.out.println("恭喜,查询成功!");
} else {
System.out.println("遗憾,查询失败!");
}
// 输出该用户的信息
System.out.println(user);
}
运行单元测试方法testFindByUsername(),结果如下:
(5).编写测试方法testFindAll()
@Test
public void testFindAll() {
UserDao userDao = new UserDaoImpl();
List<User> users = userDao.findAll();
if (users.size() > 0) {
for (User user : users) {
System.out.println(user);
}
} else {
System.out.println("没有用户!");
}
}
运行单元测试方法testFindAll(),结果如下:
(6).编写测试方法testInsert()
@Test
public void testInsert() {
// 定义用户数据访问对象
UserDao userDao = new UserDaoImpl();
User user = new User();
// 添加一个id为5的用户
if (userDao.findById(5) == null) {
user.setId(5);
} else {
System.out.println("该用户已经存在!");
}
user.setUsername("root");
user.setPassword("88888");
user.setTelephone("18712568945");
// 获取当前时间
user.setRegisterTime(Date.from(Instant.now()));
user.setPopedom(1);
int count = userDao.insert(user);
// 判断更新用户是否成功
if (count > 0) {
System.out.println("恭喜,用户添加成功!");
} else {
System.out.println("遗憾,用户添加失败!");
}
}
运行单元测试方法testInsert(),结果如下:
(7).编写测试方法testDeleteById()
@Test
public void testDeleteById() {
// 定义用户数据访问对象
UserDao userDao = new UserDaoImpl();
// 删除id为5的用户
int count = userDao.deleteById(5);
// 判断删除是否成功
if (count > 0) {
System.out.println("恭喜,删除成功!");
} else {
System.out.println("遗憾,删除失败!");
}
}
运行单元测试方法testDeleteById(),结果如下:
修改id:
思考题:
如何避免插入同名用户?插入同名用户时,提示用户名已存在。
将需要插入的用户名与数据库里已经存在的用户名进行判断比较是否重复,重复则提示该用户名存在。
如何避免更新用户记录时注册时间在当前时间之后的问题?
注册时间不能更改,应该保持与第一次相同。更新数据时不更新注册时间。
(2)类别数据访问接口实现类CategoryDaoImpl
- 类别数据访问接口实现类CategoryDaoImpl
package net.xsp.shop.dao.impl;
/**
* 功能:类别数据访问接口实现类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import net.xsp.shop.bean.Category;
import net.xsp.shop.dao.CategoryDao;
import net.xsp.shop.dbutil.ConnectionManager;
public class CategoryDaoImpl implements CategoryDao {
/**
* 插入类别
*/
@Override
public int insert(Category category) {
// 定义插入记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "INSERT INTO t_category (name) VALUES (?)";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, category.getName());
// 执行更新操作,插入新录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回插入记录数
return count;
}
/**
* 删除类别
*/
@Override
public int deleteById(int id) {
// 定义删除记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "DELETE FROM t_category WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行更新操作,删除记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回删除记录数
return count;
}
/**
* 更新类别
*/
@Override
public int update(Category category) {
// 定义更新记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "UPDATE t_category SET name = ? WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, category.getName());
pstmt.setInt(2, category.getId());
// 执行更新操作,更新记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回更新记录数
return count;
}
/**
* 按标识符查询类别
*/
@Override
public Category findById(int id) {
// 声明商品类别
Category category = null;
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_category WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行SQL查询,返回结果集
ResultSet rs = pstmt.executeQuery();
// 判断结果集是否有记录
if (rs.next()) {
// 实例化商品类别
category = new Category();
// 利用当前记录字段值去设置商品类别的属性
category.setId(rs.getInt("id"));
category.setName(rs.getString("name"));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回商品类别
return category;
}
/**
* 查询全部类别
*/
@Override
public List<Category> findAll() {
// 声明类别列表
List<Category> categories = new ArrayList<Category>();
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_category";
try {
// 创建语句对象
Statement stmt = conn.createStatement();
// 执行SQL,返回结果集
ResultSet rs = stmt.executeQuery(strSQL);
// 遍历结果集
while (rs.next()) {
// 创建类别实体
Category category = new Category();
// 设置实体属性
category.setId(rs.getInt("id"));
category.setName(rs.getString("name"));
// 将实体添加到类别列表
categories.add(category);
}
// 关闭结果集
rs.close();
// 关闭语句对象
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回类别列表
return categories;
}
}
- 创建测试类TestCategoryDaoImpl
(1)编写测试方法testFindAll()
@Test
public void testFindAll() {
CategoryDao categoryDao = new CategoryDaoImpl();
List<Category> categories = categoryDao.findAll();
if (categories.size() > 0) {
for (Category category : categories) {
System.out.println(category);
}
} else {
System.out.println("没有商品类别!");
}
}
运行测试方法testFindAll(),结果如下:
(2)编写测试方法testInsert()
@Test
public void testInsert() {
CategoryDao categoryDao = new CategoryDaoImpl();
Category category = new Category();
category.setId(5);
category.setName("洗漱用品");
int count = categoryDao.insert(category);
if (count > 0) {
System.out.println("商品类别插入成功!");
System.out.println(categoryDao.findById(category.getId()));
} else {
System.out.println("商品类别插入失败!");
}
}
运行测试方法 testInsert(),结果如下:
(3)编写测试方法testDeleteById()
@Test
public void testDeleteById() {
CategoryDao categoryDao = new CategoryDaoImpl();
int count = categoryDao.deleteById(5);
if (count > 0) {
System.out.println("商品类别删除成功!");
} else {
System.out.println("商品类别删除失败!");
}
}
运行测试方法testDeleteById(),结果如下:
更改:
(4)编写测试方法testUpdate()
@Test
public void testUpdate() {
CategoryDao categoryDao = new CategoryDaoImpl();
Category category = categoryDao.findById(4);
// 将id为4的休闲食品改为休闲商品
category.setName("休闲商品");
int count = categoryDao.update(category);
if (count > 0) {
System.out.println("恭喜,商品类别更新成功!");
System.out.println(categoryDao.findById(4));
} else {
System.out.println("遗憾,商品类别更新失败!");
}
}
运行测试方法testUpdate(),结果如下:
(5)编写测试方法testFindById()
@Test
public void testFindById() {
CategoryDao categoryDao = new CategoryDaoImpl();
Category category = categoryDao.findById(1);
// 判断查询是否成功
if (category != null) {
System.out.println("恭喜,查询成功!");
System.out.println(category);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindById() ,结果如下:
修改:
(3)商品数据访问接口实现类ProductDaoImpl
- 商品数据访问接口实现类ProductDaoImpl
package net.xsp.shop.dao.impl;
/**
* 功能:产品数据访问接口实现类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import net.xsp.shop.bean.Product;
import net.xsp.shop.dao.ProductDao;
import net.xsp.shop.dbutil.ConnectionManager;
public class ProductDaoImpl implements ProductDao {
/**
* 插入商品
*/
@Override
public int insert(Product product) {
// 定义插入记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "INSERT INTO t_product (name, price, add_time, category_id)" + " VALUES (?, ?, ?, ?)";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, product.getName());
pstmt.setDouble(2, product.getPrice());
pstmt.setTimestamp(3, new Timestamp(product.getAddTime().getTime()));
pstmt.setInt(4, product.getCategoryId());
// 执行更新操作,插入新记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回插入记录数
return count;
}
/**
* 删除商品
*/
@Override
public int deleteById(int id) {
// 定义删除记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "DELETE FROM t_product WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行更新操作,删除记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回删除记录数
return count;
}
/**
* 更新商品
*/
@Override
public int update(Product product) {
// 定义更新记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "UPDATE t_product SET name = ?, price = ?, add_time = ?,"
+ " category_id = ? WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, product.getName());
pstmt.setDouble(2, product.getPrice());
pstmt.setTimestamp(3, new Timestamp(product.getAddTime().getTime()));
pstmt.setInt(4, product.getCategoryId());
pstmt.setInt(5, product.getId());
// 执行更新操作,更新记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回更新记录数
return count;
}
/**
* 按标识符查找商品
*/
@Override
public Product findById(int id) {
// 声明商品
Product product = null;
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_product WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行SQL查询,返回结果集
ResultSet rs = pstmt.executeQuery();
// 判断结果集是否有记录
if (rs.next()) {
// 实例化商品
product = new Product();
// 利用当前记录字段值去设置商品类别的属性
product.setId(rs.getInt("id"));
product.setName(rs.getString("name"));
product.setPrice(rs.getDouble("price"));
product.setAddTime(rs.getTimestamp("add_time"));
product.setCategoryId(rs.getInt("category_id"));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回商品
return product;
}
/**
* 按类别查询商品
*/
@Override
public List<Product> findByCategoryId(int categoryId) {
// 定义商品列表
List<Product> products = new ArrayList<Product>();
// 获取数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_product WHERE category_id = ?";
try {
// 创建预备语句
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, categoryId);
// 执行SQL语句,返回结果集
ResultSet rs = pstmt.executeQuery();
// 遍历结果集,将其中的每条记录生成商品对象,添加到商品列表
while (rs.next()) {
// 实例化商品对象
Product product = new Product();
// 利用当前记录字段值设置实体对应属性
product.setId(rs.getInt("id"));
product.setName(rs.getString("name"));
product.setPrice(rs.getDouble("price"));
product.setAddTime(rs.getTimestamp("add_time"));
product.setCategoryId(rs.getInt("category_id"));
// 将商品添加到商品列表
products.add(product);
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回商品列表
return products;
}
/**
* 查询全部商品
*/
@Override
public List<Product> findAll() {
// 声明商品列表
List<Product> products = new ArrayList<Product>();
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_product";
try {
// 创建语句对象
Statement stmt = conn.createStatement();
// 执行SQL,返回结果集
ResultSet rs = stmt.executeQuery(strSQL);
// 遍历结果集
while (rs.next()) {
// 创建商品实体
Product product = new Product();
// 设置实体属性
product.setId(rs.getInt("id"));
product.setName(rs.getString("name"));
product.setPrice(rs.getDouble("price"));
product.setAddTime(rs.getTimestamp("add_time"));
product.setCategoryId(rs.getInt("category_id"));
// 将实体添加到商品列表
products.add(product);
}
// 关闭结果集
rs.close();
// 关闭语句对象
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回商品列表
return products;
}
}
- 创建测试类TestProductDaoImpl
(1)编写测试方法testFindByCategoryId()
@Test
public void testFindByCategoryId(){
ProductDao productDao = new ProductDaoImpl();
int categoryId = 1;
CategoryDao categoryDao = new CategoryDaoImpl();
if (categoryDao.findById(categoryId) != null) {
String categoryName = categoryDao.findById(categoryId).getName();
List<Product> products = productDao.findByCategoryId(categoryId);
if (!products.isEmpty()) {
for (Product product : products) {
System.out.println(product);
}
} else {
System.out.println("(" + categoryName + ")类别没有商品!");
}
} else {
System.out.println("类别编号[" + categoryId +"]不存在!");
}
}
运行测试方法testFindByCategoryId() ,结果如下:
修改一下查询的类别id,比如改成5,再运行测试方法testFindByCategoryId(),结果如下:
打开t_category表,添加一条新记录:
此时,再运行测试方法testFindByCategoryId(),结果如下:
(2)编写测试方法testFindById()
@Test
public void testFindById() {
ProductDao productDao = new ProductDaoImpl();
Product product = productDao.findById(1);
// 判断查询是否成功
if (product != null) {
System.out.println("恭喜,查询成功!");
System.out.println(product);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindById() ,结果如下:
更改:
(3)编写测试方法testFindAll()
@Test
public void testFindAll() {
ProductDao productDao = new ProductDaoImpl();
List<Product> products = productDao.findAll();
if (products.size() > 0) {
for (Product category : products) {
System.out.println(category);
}
} else {
System.out.println("没有商品!");
}
}
运行测试方法testFindAll() ,结果如下:
(4)编写测试方法testInsert()
@Test
public void testInsert() {
ProductDao productDao = new ProductDaoImpl();
Product product = new Product();
product.setId(16);
product.setName("联想电脑");
product.setPrice(6000);
product.setAddTime(Date.from(Instant.now()));
product.setCategoryId(1);
int count = productDao.insert(product);
if (count > 0) {
System.out.println("商品类别插入成功!");
System.out.println(productDao.findById(product.getId()));
} else {
System.out.println("商品类别插入失败!");
}
}
运行测试方法testInsert(),结果如下:
(5)编写测试方法testDeleteById()
@Test
public void testDeleteById() {
ProductDao productDao = new ProductDaoImpl();
int count = productDao.deleteById(16);
if (count > 0) {
System.out.println("商品删除成功!");
} else {
System.out.println("商品删除失败!");
}
}
运行测试方法testDeleteById(),结果如下:
修改:
(6)编写测试方法testUpdate()
@Test
public void testUpdate() {
ProductDao productDao = new ProductDaoImpl();
Product product = productDao.findById(1);
// 将id为1的容声电冰箱改为海尔电冰箱
product.setName("海尔电冰箱");
int count = productDao.update(product);
if (count > 0) {
System.out.println("恭喜,商品类别更新成功!");
System.out.println(productDao.findById(1));
} else {
System.out.println("遗憾,商品类别更新失败!");
}
}
运行测试方法testUpdate(),结果如下:
(4)订单数据访问接口实现类OrderDaoImpl
- 订单数据访问接口实现类OrderDaoImpl
package net.xsp.shop.dao.impl;
/**
* 功能:订单数据访问接口实现类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import net.xsp.shop.bean.Order;
import net.xsp.shop.dao.OrderDao;
import net.xsp.shop.dbutil.ConnectionManager;
public class OrderDaoImpl implements OrderDao {
/**
* 插入订单
*/
@Override
public int insert(Order order) {
// 定义插入记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "INSERT INTO t_order (username, telephone, total_price, delivery_address, order_time)"
+ " VALUES (?, ?, ?, ?, ?)";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, order.getUsername());
pstmt.setString(2, order.getTelephone());
pstmt.setDouble(3, order.getTotalPrice());
pstmt.setString(4, order.getDeliveryAddress());
pstmt.setTimestamp(5, new Timestamp(order.getOrderTime().getTime()));
// 执行更新操作,插入记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回插入记录数
return count;
}
/**
* 删除订单
*/
@Override
public int deleteById(int id) {
// 定义删除记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "DELETE FROM t_order WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行更新操作,删除记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回删除记录数
return count;
}
/**
* 更新订单
*/
@Override
public int update(Order order) {
// 定义更新记录数
int count = 0;
// 获得数据库连接
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "UPDATE t_order SET username = ?, telephone = ?, total_price = ?,"
+ " delivery_address = ?, order_time = ? WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setString(1, order.getUsername());
pstmt.setString(2, order.getTelephone());
pstmt.setDouble(3, order.getTotalPrice());
pstmt.setString(4, order.getDeliveryAddress());
pstmt.setTimestamp(5, new Timestamp(order.getOrderTime().getTime()));
pstmt.setInt(6, order.getId());
// 执行更新操作,更新记录
count = pstmt.executeUpdate();
// 关闭预备语句对象
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回更新记录数
return count;
}
/**
* 查询最后一个订单
*/
@Override
public Order findLast() {
// 声明订单
Order order = null;
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_order";
try {
// 创建语句对象
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
// 执行SQL,返回结果集
ResultSet rs = stmt.executeQuery(strSQL);
// 定位到最后一条记录
if (rs.last()) {
// 创建订单实体
order = new Order();
// 设置实体属性
order.setId(rs.getInt("id"));
order.setUsername(rs.getString("username"));
order.setTelephone(rs.getString("telephone"));
order.setTotalPrice(rs.getDouble("total_price"));
order.setDeliveryAddress(rs.getString("delivery_address"));
order.setOrderTime(rs.getTimestamp("order_time"));
}
// 关闭结果集
rs.close();
// 关闭语句对象
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回订单对象
return order;
}
/**
* 按标识符查询订单
*/
@Override
public Order findById(int id) {
// 声明订单
Order order = null;
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_order WHERE id = ?";
try {
// 创建预备语句对象
PreparedStatement pstmt = conn.prepareStatement(strSQL);
// 设置占位符的值
pstmt.setInt(1, id);
// 执行SQL查询,返回结果集
ResultSet rs = pstmt.executeQuery();
// 判断结果集是否有记录
if (rs.next()) {
// 实例化订单
order = new Order();
// 利用当前记录字段值去设置订单的属性
order.setId(rs.getInt("id"));
order.setUsername(rs.getString("username"));
order.setTelephone(rs.getString("telephone"));
order.setDeliveryAddress(rs.getString("delivery_address"));
order.setOrderTime(rs.getTimestamp("order_time"));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
ConnectionManager.closeConnection(conn);
}
// 返回订单
return order;
}
/**
* 查询全部订单
*/
@Override
public List<Order> findAll() {
// 声明订单列表
List<Order> orders = new ArrayList<Order>();
// 获取数据库连接对象
Connection conn = ConnectionManager.getConnection();
// 定义SQL字符串
String strSQL = "SELECT * FROM t_order";
try {
// 创建语句对象
Statement stmt = conn.createStatement();
// 执行SQL,返回结果集
ResultSet rs = stmt.executeQuery(strSQL);
// 遍历结果集
while (rs.next()) {
// 创建订单实体
Order order = new Order();
// 设置实体属性
order.setId(rs.getInt("id"));
order.setUsername(rs.getString("username"));
order.setTelephone(rs.getString("telephone"));
order.setDeliveryAddress(rs.getString("delivery_address"));
order.setOrderTime(rs.getTimestamp("order_time"));
// 将实体添加到订单列表
orders.add(order);
}
// 关闭结果集
rs.close();
// 关闭语句对象
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
ConnectionManager.closeConnection(conn);
}
// 返回用户列表
return orders;
}
}
- 创建测试类TestOrderDaoImpl
(1)编写测试方法testFindAll()
@Test
public void testFindAll() {
OrderDao orderDao = new OrderDaoImpl();
List<Order> orders = orderDao.findAll();
if (orders.size() > 0) {
for (Order order : orders) {
System.out.println(order);
}
} else {
System.out.println("没有订单!");
}
}
运行测试方法testFindAll(),结果如下:
(2)编写测试方法testFindId()
@Test
public void testFindById() {
OrderDao orderDao = new OrderDaoImpl();
Order order = orderDao.findById(1);
// 判断查询是否成功
if (order != null) {
System.out.println("恭喜,查询成功!");
System.out.println(order);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindId(),结果如下:
更改:
(3)编写测试方法testFindLast()
@Test
public void testFindLast() {
OrderDao orderDao = new OrderDaoImpl();
Order order = orderDao.findLast();
if (order != null) {
System.out.println("恭喜,查询成功!");
System.out.println(order);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindLast(),结果如下:
(4)编写测试方法testInsert()
@Test
public void testInsert() {
OrderDao orderDao = new OrderDaoImpl();
Order order = new Order();
order.setId(3);
order.setUsername("邪剑仙");
order.setTelephone("15648568754");
order.setTotalPrice(3000);
order.setDeliveryAddress("泸职院信息工程系");
order.setOrderTime(Date.from(Instant.now()));
int count = orderDao.insert(order);
if (count > 0) {
System.out.println("订单记录插入成功!");
System.out.println(orderDao.findById(order.getId()));
} else {
System.out.println("订单记录插入失败!");
}
}
运行测试方法testInsert(),结果如下:
(5)编写测试方法testDeleteById()
@Test
public void testDeleteById() {
OrderDao orderDao = new OrderDaoImpl();
int count = orderDao.deleteById(3);
if (count > 0) {
System.out.println("订单删除成功!");
} else {
System.out.println("订单删除失败!");
}
}
运行测试方法testDeleteById() ,结果如下:
更改:
(6)编写测试方法 testUpdate()
@Test
public void testUpdate() {
OrderDao orderDao = new OrderDaoImpl();
Order order = orderDao.findById(1);
// id为1的订单将姓名改了,total_price改为4000
order.setUsername("郑晓红11");
order.setTotalPrice(4000);
int count = orderDao.update(order);
if (count > 0) {
System.out.println("恭喜,商品类别更新成功!");
System.out.println(orderDao.findById(1));
} else {
System.out.println("遗憾,商品类别更新失败!");
}
}
运行测试方法 testUpdate(),结果如下:
6.数据访问服务类XXXService
在src里创建net.xsp.shop.service包,在里面创建四个服务类:UserService、CategoryService、ProductService与OrderService。
- 用户服务类UserService
package net.xsp.shop.service;
/**
* 功能:用户服务类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.User;
import net.xsp.shop.dao.UserDao;
import net.xsp.shop.dao.impl.UserDaoImpl;
public class UserService {
/**
* 声明用户访问对象
*/
private UserDao userDao = new UserDaoImpl();
public int addUser(User user) {
return userDao.insert(user);
}
public int deleteUserById(int id) {
return userDao.deleteById(id);
}
public int updateUser(User user) {
return userDao.update(user);
}
public User findUserById(int id) {
return userDao.findById(id);
}
public List<User> findUsersByUsername(String username) {
return userDao.findByUsername(username);
}
public List<User> findAllUsers() {
return userDao.findAll();
}
public User login(String username, String password) {
return userDao.login(username, password);
}
}
- 类别服务类CategoryService
package net.xsp.shop.service;
/**
* 功能:类别服务类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.Category;
import net.xsp.shop.dao.CategoryDao;
import net.xsp.shop.dao.impl.CategoryDaoImpl;
public class CategoryService {
/**
* 声明类别数据访问对象
*/
private CategoryDao categoryDao = new CategoryDaoImpl();
public int addCategory(Category category) {
return categoryDao.insert(category);
}
public int deleteCategoryById(int id) {
return categoryDao.deleteById(id);
}
public int updateCategory(Category category) {
return categoryDao.update(category);
}
public Category findCategoryById(int id) {
return categoryDao.findById(id);
}
public List<Category> findAllCategories() {
return categoryDao.findAll();
}
}
- 商品服务类ProductService
package net.xsp.shop.service;
/**
* 功能:商品服务类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.Product;
import net.xsp.shop.dao.ProductDao;
import net.xsp.shop.dao.impl.ProductDaoImpl;
public class ProductService {
/**
* 声明商品数据访问对象
*/
private ProductDao productDao = new ProductDaoImpl();
public int addProduct(Product product) {
return productDao.insert(product);
}
public int deleteProductById(int id) {
return productDao.deleteById(id);
}
public int updateProduct(Product product) {
return productDao.update(product);
}
public Product findProductById(int id) {
return productDao.findById(id);
}
public List<Product> findProductsByCategoryId(int categoryId) {
return productDao.findByCategoryId(categoryId);
}
public List<Product> findAllProducts() {
return productDao.findAll();
}
}
- 订单服务类OrderService
package net.xsp.shop.service;
/**
* 功能:订单服务类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.util.List;
import net.xsp.shop.bean.Order;
import net.xsp.shop.dao.OrderDao;
import net.xsp.shop.dao.impl.OrderDaoImpl;
public class OrderService {
/**
* 声明订单数据访问对象
*/
OrderDao orderDao = new OrderDaoImpl();
public int addOrder(Order order) {
return orderDao.insert(order);
}
public int deleteOrderById(int id) {
return orderDao.deleteById(id);
}
public int updateOrder(Order order) {
return orderDao.update(order);
}
public Order findOrderById(int id) {
return orderDao.findById(id);
}
public Order findLastOrder() {
return orderDao.findLast();
}
public List<Order> findAllOrders() {
return orderDao.findAll();
}
}
创建四个测试类TestUserService、TestCategoryService、TestProductService与TestOrderService,编写测试方法测试四个服务类里的各个方法。
- 测试类TestUserService
(1)编写测试方法testAddUser()
@Test
public void testAddUser() {
UserService service = new UserService();
User user = new User();
user.setId(13);
user.setUsername("张三");
user.setPassword("223344");
user.setTelephone("14565425235");
user.setRegisterTime(Date.from(Instant.now()));
user.setPopedom(1);
int count = service.addUser(user);
if (count > 0) {
System.out.println("恭喜,用户添加成功!");
user = service.findUserById(13);
System.out.println(user);
} else {
System.out.println("遗憾,用户添加失败!");
}
}
运行测试方法testAddUser(),结果:
(2)编写测试方法testDeleteById()
@Test
public void testDeleteById() {
UserService service = new UserService();
int count = service.deleteUserById(13);
if (count > 0) {
System.out.println("用户信息成功!");
} else {
System.out.println("用户信息失败!");
}
}
运行测试方法testDeleteById(),结果:
更改:
(3)编写测试方法testUpdateUser()
@Test
public void testUpdateUser() {
UserService service = new UserService();
User user = service.findUserById(4);
user.setUsername("李四");
int count = service.updateUser(user);
if (count > 0) {
System.out.println("恭喜,用户信息更新成功!");
System.out.println(service.findUserById(4));
} else {
System.out.println("遗憾,用户信息更新失败!");
}
}
运行测试方法testUpdateUser() ,结果:
(4)编写测试方法testFindUserById()
@Test
public void testFindUserById() {
UserService service = new UserService();
User user = service.findUserById(1);
// 判断查询是否成功
if (user != null) {
System.out.println("恭喜,查询成功!");
System.out.println(user);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindUserById() ,结果:
更改:
(5)编写测试方法testFindUserByIdUsername()
@Test
public void testFindUserByIdUsername() {
UserService service = new UserService();
List<User> user = service.findUsersByUsername("温志军");
// 判断查询是否成功
if (user != null) {
System.out.println("恭喜,查询成功!");
System.out.println(user);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindUserByIdUsername() ,结果:
(6)编写测试方法 testFindAllUsers()
@Test
public void testFindAllUsers() {
UserService service = new UserService();
List<User> users = service.findAllUsers();
if (users.size() > 0) {
for (User user : users) {
System.out.println(user);
}
} else {
System.out.println("没有用户!");
}
}
运行测试方法 testFindAllUsers() ,结果:
(7)编写测试方法 testLogin()
@Test
public void testLogin() {
String username, password;
username = "admin";
password = "12345";
UserService service = new UserService();
User user = service.login(username, password);
// 判断用户登录是否成功
if (user != null) {
System.out.println("恭喜,登录成功!");
} else {
System.out.println("遗憾,登录失败!");
}
}
运行测试方法 testLogin(),结果:
- 测试类TestCategoryService
(1)编写测试方法 testAddCategory()
@Test
public void testAddCategory() {
CategoryService service = new CategoryService();
Category category = new Category();
category.setId(7);
category.setName("洗漱用品");
int count = service.addCategory(category);
if (count > 0) {
System.out.println("商品类别插入成功!");
System.out.println(service.findCategoryById(7));
} else {
System.out.println("商品类别插入失败!");
}
}
运行测试方法 testAddCategory(),结果:
(2)编写测试方法 testDeleteCategoryById()
@Test
public void testDeleteCategoryById() {
CategoryService service = new CategoryService();
int count = service.deleteCategoryById(7);
if (count > 0) {
System.out.println("商品类别删除成功!");
} else {
System.out.println("商品类别删除失败!");
}
}
运行测试方法 testDeleteCategoryById(),结果:
更改:
(3)编写测试方法 testUpdateCategory()
@Test
public void testUpdateCategory() {
CategoryService service = new CategoryService();
Category category = service.findCategoryById(4);
// 将id为4的休闲食品改为休闲商品
category.setName("休闲商品");
int count = service.updateCategory(category);
if (count > 0) {
System.out.println("恭喜,商品类别更新成功!");
System.out.println(service.findCategoryById(4));
} else {
System.out.println("遗憾,商品类别更新失败!");
}
}
运行测试方法 testDeleteCategoryById(),结果:
(4)编写测试方法testFindCategoryById()
@Test
public void testFindCategoryById() {
CategoryService service = new CategoryService();
Category category = service.findCategoryById(1);
// 判断查询是否成功
if (category != null) {
System.out.println("恭喜,查询成功!");
System.out.println(category);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法 testFindCategoryById(),结果:
更改:
(5)编写测试方法testFindAllCategories()
@Test
public void testFindAllCategories() {
CategoryService service = new CategoryService();
List<Category> categories = service.findAllCategories();
if (categories.size() > 0) {
for (Category category : categories) {
System.out.println(category);
}
} else {
System.out.println("没有商品类别!");
}
}
运行测试方法 testFindAllCategories(),结果:
- 测试类TestProductService
(1)编写测试方法testAddProduct()
@Test
public void testAddProduct() {
ProductService service = new ProductService();
Product product = new Product();
product.setId(19);
product.setName("联想电脑");
product.setPrice(6000);
product.setAddTime(Date.from(Instant.now()));
product.setCategoryId(1);
int count = service.addProduct(product);
if (count > 0) {
System.out.println("商品类别插入成功!");
System.out.println(service.findProductById(19));
} else {
System.out.println("商品类别插入失败!");
}
}
运行测试方法testAddProduct(),结果:
(2)编写测试方法 testDeleteProductById()
@Test
public void testDeleteProductById() {
ProductService service = new ProductService();
int count = service.deleteProductById(19);
if (count > 0) {
System.out.println("商品删除成功!");
} else {
System.out.println("商品删除失败!");
}
}
运行测试方法 testDeleteProductById() ,结果:
更改:
(3)编写测试方法testUpdateProduct()
@Test
public void testUpdateProduct() {
ProductService service = new ProductService();
Product product = service.findProductById(1);
// 将id为1的容声电冰箱改为海尔电冰箱
product.setName("海尔电冰箱");
int count = service.updateProduct(product);
if (count > 0) {
System.out.println("恭喜,商品类别更新成功!");
System.out.println(service.findProductById(1));
} else {
System.out.println("遗憾,商品类别更新失败!");
}
}
运行测试方法testUpdateProduct() ,结果:
(4)编写测试方法testFindProductById()
@Test
public void testFindProductById() {
ProductService service = new ProductService();
Product product = service.findProductById(3);
// 判断查询是否成功
if (product != null) {
System.out.println("恭喜,查询成功!");
System.out.println(product);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindProductById() ,结果:
更改:
(5)编写测试方法testFindAllProducts()
@Test
public void testFindAllProducts() {
ProductService service = new ProductService();
List<Product> products = service.findAllProducts();
if (products.size() > 0) {
for (Product category : products) {
System.out.println(category);
}
} else {
System.out.println("没有商品!");
}
}
运行测试方法testFindAllProducts() ,结果:
(6)编写测试方法 testFindProductsByCategoryId()
@Test
public void testFindProductsByCategoryId() {
ProductService service = new ProductService();
int categoryId = 3;
CategoryService categoryService = new CategoryService();
if (categoryService.findCategoryById(categoryId) != null) {
String categoryName = categoryService.findCategoryById(categoryId).getName();
List<Product> products = service.findProductsByCategoryId(categoryId);
if (!products.isEmpty()) {
for (Product product : products) {
System.out.println(product);
}
} else {
System.out.println("(" + categoryName + ")类别没有商品!");
}
} else {
System.out.println("类别编号[" + categoryId +"]不存在!");
}
}
运行测试方法 testFindProductsByCategoryId() ,结果:
- 测试类TestOrderService
(1)编写测试方法testAddOrder()
@Test
public void testAddOrder() {
OrderService service = new OrderService();
Order order = new Order();
order.setId(4);
order.setUsername("王二小");
order.setTelephone("15648568754");
order.setTotalPrice(4000);
order.setDeliveryAddress("泸职院信息工程系");
order.setOrderTime(Date.from(Instant.now()));
int count = service.addOrder(order);
if (count > 0) {
System.out.println("订单记录插入成功!");
System.out.println(service.findOrderById(order.getId()));
} else {
System.out.println("订单记录插入失败!");
}
}
运行测试方法testAddOrder(),结果:
(2)编写测试方法testDeleteOrderById()
@Test
public void testDeleteOrderById() {
OrderService service = new OrderService();
int count = service.deleteOrderById(4);
if (count > 0) {
System.out.println("订单删除成功!");
} else {
System.out.println("订单删除失败!");
}
}
运行测试方法testDeleteOrderById(),结果:
更改:
(3)编写测试方法testUpdateOrder()
@Test
public void testUpdateOrder() {
OrderService service = new OrderService();
Order order = service.findOrderById(1);
// id为1的订单将姓名改了
order.setUsername("郑晓红123");
int count = service.updateOrder(order);
if (count > 0) {
System.out.println("恭喜,商品类别更新成功!");
System.out.println(service.findOrderById(1));
} else {
System.out.println("遗憾,商品类别更新失败!");
}
}
运行测试方法testUpdateOrder(),结果:
(4)编写测试方法testFindOrderById()
@Test
public void testFindOrderById() {
OrderService service = new OrderService();
Order order = service.findOrderById(2);
// 判断查询是否成功
if (order != null) {
System.out.println("恭喜,查询成功!");
System.out.println(order);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法testFindOrderById(),结果:
更改:
(5)编写测试方法 testFindLastOrder()
@Test
public void testFindLastOrder() {
OrderService service = new OrderService();
Order order = service.findLastOrder();
if (order != null) {
System.out.println("恭喜,查询成功!");
System.out.println(order);
} else {
System.out.println("遗憾,查询失败!");
}
}
运行测试方法 testFindLastOrder(),结果:
(6)编写测试方法testFindAllOrders()
@Test
public void testFindAllOrders() {
OrderService service = new OrderService();
List<Order> orders = service.findAllOrders();
if (orders.size() > 0) {
for (Order order : orders) {
System.out.println(order);
}
} else {
System.out.println("没有订单!");
}
}
运行测试方法 testFindAllOrders(),结果:
7.控制层(XXXServlet)
在src里创建net.hw.shop.servlet包,在里面创建各种控制处理类。
(1)登录处理类LoginServlet
ackage net.xsp.shop.servlet;
/**
* 功能:登录处理类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import net.xsp.shop.bean.User;
import net.xsp.shop.service.UserService;
@WebServlet("/login")
public class LoginServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 设置请求对象的字符编码
request.setCharacterEncoding("utf-8");
// 获取会话对象
HttpSession session = request.getSession();
// 获取用户名
String username = request.getParameter("username");
// 获取密码
String password = request.getParameter("password");
// 定义用户服务对象
UserService userService = new UserService();
// 执行登录方法,返回用户实体
User user = userService.login(username, password);
// 判断用户登录是否成功
if (user != null) {
// 设置session属性
session.setMaxInactiveInterval(5 * 60);
session.setAttribute("username", username);
session.removeAttribute("loginMsg");
// 根据用户权限跳转到不同页面
if (user.getPopedom() == 0) {
response.sendRedirect(request.getContextPath() + "/backend/management.jsp");
} else if (user.getPopedom() == 1) {
response.sendRedirect(request.getContextPath() + "/showCategory");
}
} else {
// 设置session属性
session.setAttribute("loginMsg", "用户名或密码错误!");
response.sendRedirect(request.getContextPath() + "/login.jsp");
}
}
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
(2)注销处理类LogoutServlet
package net.xsp.shop.servlet;
/**
* 功能:注销处理类
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/logout")
public class LogoutServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 让session失效
request.getSession().invalidate();
// 重定向到登录页面
response.sendRedirect(request.getContextPath() + "/login.jsp");
}
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
(3)注册处理类RegisterServlet
package net.xsp.shop.servlet;
/**
* 功能:处理用户注册
* 作者:向仕平
* 日期:2019年12月5日
*/
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLEncoder;
import java.sql.Timestamp;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import net.xsp.shop.bean.User;
import net.xsp.shop.service.UserService;
@WebServlet("/register")
public class RegisterServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 设置请求对象的字符编码
request.setCharacterEncoding("utf-8");
// 获取session对象
HttpSession session = request.getSession();
// 获取用户名
String username = request.getParameter("username");
// 获取密码
String password = request.getParameter("password");
// 获取电话号码
String telephone = request.getParameter("telephone");
// 设置注册时间(时间戳对象)
Timestamp registerTime = new Timestamp(System.currentTimeMillis());
// 设置用户为普通用户
int popedom = 1;
// 创建用户对象
User user = new User();
// 设置用户对象信息
user.setUsername(username);
user.setPassword(password);
user.setTelephone(telephone);
user.setRegisterTime(registerTime);
user.setPopedom(popedom);
// 创建UserService对象
UserService userService = new UserService();
// 调用UserService对象的注册方法
int count = userService.addUser(user);
// 判断是否注册成功
if (count > 0) {
// 设置session属性
session.setAttribute("registerMsg", "恭喜,注册成功!");
// 重定向到登录页面
response.sendRedirect(request.getContextPath() + "/login.jsp");
} else {
// 设置session属性
session.setAttribute("registerMsg", "遗憾,注册失败!");
// 重定向到注册页面
response.sendRedirect(request.getContextPath() + "/frontend/register.jsp");
}
}
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}