(一)创建数据库
创建MySQL数据库simonshop,包含四张表:用户表(t_user)、类别表(t_category)、商品表(t_product)和订单表(t_order)。
(二)创建Web项目simonshop
1、创建Web项目simonshop
2、在项目结构窗口里设置Artifacts名称:simonshop
3、配置服务器(Server)
4、设置部署(Deployment)
(三)创建实体类
在src里创建net.lfh.shop.bean包,创建四个实体类:User、Category、Product与Order,与四张表t_user、t_category、t_product与t_order一一对应。
1、用户实体类User
package net.lfh.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 +
'}';
}
}
2、类别实体类Category
package net.lfh.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 + '\'' +
'}';
}
}
3、商品实体类Product
package net.lfh.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 +
'}';
}
}
4、订单实体类Order
package net.lfh.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 +
'}';
}
}
(四)创建数据库工具类ConnectionManager
1、在web\WEB-INF目录下创建lib子目录,添加MySQL驱动程序的jar包
2、在src下创建net.lfh.shop.dbutil包,在里面创建ConnectionManager类
package net.lfh.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 = "123456";
/**
* 私有化构造方法,拒绝实例化
*/
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);
}
}
运行程序,查看结果:
(五)数据访问接口 (Dao层)
在src里创建net.lfh.shop.dao包,在里面创建UserDao、CategoryDao、ProductDao与OrderDao。
1、用户数据访问接口UserDao
package net.lfh.shop.dao;
/**
* 功能:用户数据访问接口
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.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);
}
2、类别数据访问接口CategoryDao
package net.lfh.shop.dao;
/**
* 功能:类别数据访问接口
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.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();
}
3、商品数据访问接口ProductDao
package net.lfh.shop.dao;
/**
* 功能:商品数据访问接口
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.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();
}
4、订单数据访问接口OrderDao
package net.lfh.shop.dao;
/**
* 功能:订单数据访问接口
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.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();
}
(六)数据访问接口实现类(XXXDaoImpl)
在src下创建net.lfh.shop.dao.impl包,在里面创建UserDaoImpl、CategoryDaoImpl、ProductDaoImpl与OrderDaoImpl。
1、用户数据访问接口实现类UserDaoImpl
package net.lfh.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.lfh.shop.bean.User;
import net.lfh.shop.dao.UserDao;
import net.lfh.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;
}
}
2、类别数据访问接口实现类CategoryDaoImpl
package net.lfh.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.lfh.shop.bean.Category;
import net.lfh.shop.dao.CategoryDao;
import net.lfh.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;
}
}
3、产品数据访问接口实现类ProductDaoImpl
package net.lfh.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.lfh.shop.bean.Product;
import net.lfh.shop.dao.ProductDao;
import net.lfh.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;
}
}
4、订单数据访问接口实现类OrderDaoImpl
package net.lfh.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.lfh.shop.bean.Order;
import net.lfh.shop.dao.OrderDao;
import net.lfh.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;
}
}
在项目根目录创建一个test文件夹,然后在项目结构窗口里将其标记为"Tests",这样文件夹颜色变成绿色。
在test文件夹里创建net.lfh.shop.dao.impl包,在里面创建测试类TestUserDaoImpl、TestCategoryDaoImpl、TestProductDaoImpl与TestOrderDaoImpl。
编写测试登录方法
将光标定位到@Test注解符,按组合键Alt + Enter:
1、测试类TestUserDaoImpl
(1)编写测试登录方法testLogin编写测试方法
填写正确的用户名与密码登录,结果如下:
修改密码登录,结果如下:
(2)更新用户信息测试方法testUpdate
修改一下测试代码再测试,运行结果如下:
(3)插入用户记录testInsert
(4)删除用户testDeleteId
修改一下测试代码再测试,运行一下:
(5)查找全部用户testFindAll
(6)按姓名查询用户testFindByUsername
(7)按标识符查询用户testFindById
修改一下测试代码再测试,结果如下:
测试类TestUserDaoImpl完整代码如下:
package net.lfh.shop.dao.impl;
import net.lfh.shop.bean.User;
import net.lfh.shop.dao.UserDao;
import org.junit.Test;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.List;
public class TestUserDaoImpl {
@Test
/**
* 用户登录
*/
public void TestLogin() {
String username, password;
username = "李福华";
password = "123456";
//创建用户数据访问对象
UserDao userDao = new UserDaoImpl();
User user = userDao.login(username, password);
//判断用户是否登录成功
if (user != null) {
System.out.println("恭喜,登录成功!");
} else {
System.out.println("遗憾,登录失败!");
}
}
@Test
/**
*更新用户信息
*/
public void testUpdate() {
//创建用户数据访问对象
UserDao userDao = new UserDaoImpl();
//找到涂文艳用户,其id是4
User user = userDao.findById(6);
//修改密码与电话
user.setPassword("888888");
user.setTelephone("14785236963");
//修改用户id
user.setId(100);
//更新涂文艳用户
int count = userDao.update(user);
//判断更新用户是否成功
if (count > 0){
System.out.println("更新成功!");
}else{
System.out.println("更新失败!");
}
//输出用户信息
System.out.println(user);
}
@Test
/**
* 插入用户记录
*/
public void testInsert() {
UserDao userDao = new UserDaoImpl();
//创建用户数据访问对象
User user = new User();
user.setUsername("夏明俊");
user.setId(3);
user.setTelephone("18328831286");
user.setPassword("666");
user.setRegisterTime(Timestamp.valueOf(LocalDateTime.now()));
user.setPopedom(1);
UserDao dao = new UserDaoImpl();
int count = userDao.insert(user);
if (count > 0) {
System.out.println("恭喜,学生记录插入成功!");
} else {
System.out.println("遗憾,学生记录插入失败!");
}
}
@Test
/**
* 删除用户
*/
public void testDeleteId() {
UserDao userDao = new UserDaoImpl();
int count = userDao.deleteById(88);
if (count > 0) {
System.out.println("恭喜,删除成功!");
} else {
System.out.println("遗憾,删除失败!");
}
}
@Test
/**
* 查找全部用户
*/
public void testFindAll() {
UserDao dao = new UserDaoImpl();
String all;
List<User> students = dao.findAll();
for (User student : students) {
System.out.println(student);
}
}
/**
* 按姓名查询用户
*/
@Test
public void testFindByUsername() {
UserDao dao = new UserDaoImpl();
String username;
List<User> students = dao.findByUsername("李福华");
for (User student : students) {
System.out.println(student);
}
}
@Test
/**
* 按标识符查询用户
*/
public void testFindById(){
UserDao dao = new UserDaoImpl();
User user = dao.findById(2);
if (user != null){
System.out.println("恭喜,查询用户成功!");
//输出用户信息
System.out.println(user);
}else {
System.out.println("抱歉,查询用户失败!");
}
}
}
2、创建测试类TestCategoryDaoImpl编写测试方法
(1)查询全部类别,testFindAll
(2)按照标识符删除订单,testDeleteById
(3)更新类别,testUpdate
(4)插入类别,testInsert
(5)按标识符查询类别,testFindById
测试类TestCategoryDaoImpl完整代码如下:
package net.lfh.shop.dao.impl;
import net.lfh.shop.bean.Category;
import net.lfh.shop.dao.CategoryDao;
import org.junit.Test;
import java.util.List;
public class TestCategoryDaoImpl {
@Test
/**
* 查询全部类别
*/
public void testFnidAll(){
//创建类别数据访问对象
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("没有商品类别!");
}
}
@Test
/**
* 按照标识符删除订单
*/
public void testDeleteById() {
CategoryDao categoryDao = new CategoryDaoImpl();
Category category = categoryDao.findById(1);
category.setId(1);
categoryDao.deleteById(1);
int count = categoryDao.deleteById(1);
if (count > 0) {
System.out.println("遗憾,删除失败!");
} else {
System.out.println("恭喜,删除成功!");
}
}
@Test
/**
* 更新类别
*/
public void testUpdate(){
CategoryDao categoryDao=new CategoryDaoImpl();
Category category=categoryDao.findById(2);
category.setName("家用电器");
categoryDao.update(category);
int count=categoryDao.update(category);
if (count>0){
System.out.println("恭喜,更新成功");
}else {
System.out.println("遗憾,更新失败");
}
}
@Test
/**
* 插入类别
*/
public void testInsert(){
Category category=new Category();
category.setName("水果海鲜");
CategoryDao dao=new CategoryDaoImpl();
int count = dao.insert(category);
if (count > 0) {
System.out.println("恭喜,商品类别插入成功!");
} else {
System.out.println("遗憾,商品类别插入失败!");
}
}
@Test
/**
* 按标识符查询类别
*/
public void testFindById(){
CategoryDao dao = new CategoryDaoImpl();
Category category = dao.findById(2);
System.out.println(category);
}
}
3、创建测试类TestProductDaoImpl,编写测试方法
(1)按类别查询商品,testFindCategoryId
修改代码,结果如下:
(2)按标识符删除商品,testDeleteById
修改代码,结果如下:
(3)插入信息,testProduct
(4)按标识符查询商品,testFindById
(5)更新商品,testUpdate
(6)查询全部商品,testFindAll
测试类TestProductDaoImpl的完整代码如下:
package net.lfh.shop.dao.impl;
import net.lfh.shop.bean.Product;
import net.lfh.shop.dao.CategoryDao;
import net.lfh.shop.dao.ProductDao;
import net.lfh.shop.service.ProductService;
import org.junit.Test;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.List;
public class TestProductDaoImpl {
@Test
/**
* 按类别查询商品
*/
public void testFindCategoryId(){
ProductDao productDao=new ProductDaoImpl();
int catagoryId=2;
CategoryDao categoryDao=new CategoryDaoImpl();
if (categoryDao.findById(catagoryId)!=null){
String categoryName=categoryDao.findById(catagoryId).getName();
List<Product> products=productDao.findByCategoryId(catagoryId);
if (!products.isEmpty()){
for (Product product:products){
System.out.println(product);
}
}else {
System.out.println("["+categoryName+"]类别没有商品");
}
}else {
System.out.println("类别编号["+catagoryId+"]不存在!");
}
}
@Test
/**
* 按标识符删除商品
*/
public void testDeleteById(){
ProductDao productDao = new ProductDaoImpl();
int count = productDao.deleteById(99);
if (count > 0) {
System.out.println("恭喜,删除成功!");
} else {
System.out.println("遗憾,删除失败!");
}
}
@Test
/**
* 插入信息
*/
public void testProduct() {
Product product = new Product();
product.setId(1);
product.setName("容声电冰箱");
product.setAddTime(Timestamp.valueOf(LocalDateTime.now()));
product.setCategoryId(1);
product.setPrice(2000);
ProductService service = new ProductService();
int count = service.addProduct(product);
if (count > 0) {
System.out.println("恭喜,商品记录插入成功!");
} else {
System.out.println("遗憾,商品记录插入失败!");
}
}
@Test
/**
* 按标识符查询商品
*/
public void testFindById(){
ProductDao dao = new ProductDaoImpl();
Product product = dao.findById(8);
System.out.println(product);
}
@Test
/**
* 更新商品
*/
public void testUpdate(){
ProductDao productDao=new ProductDaoImpl();
Product product=productDao.findById(11);
product.setName("美的空调");
product.setPrice(250);
productDao.update(product);
int count=productDao.update(product);
if (count>0){
System.out.println("恭喜,更新成功");
}else {
System.out.println("遗憾,更新失败");
}
}
@Test
/**
* 查询全部商品
*/
public void testFindAll() {
ProductDao dao = new ProductDaoImpl();
String all;
List<Product> products = dao.findAll();
for (Product product : products) {
System.out.println(product);
}
}
}
4、创建测试类TestOrderDaoImpl,编写测试方法
(1)查询全部订单,testFindAll
再运行测试方法testFinAll(),结果如下:
(2)插入订单,testInsert
(3)按照标识符删除订单,testDeleteById
(4)更新订单,testUpdate
(5)查询最后一个订单,testFindLast
(6)按标识符查询订单,testFindById
测试类TestOrderDaoImpl的完整代码如下:
package net.lfh.shop.dao.impl;
import net.lfh.shop.bean.Order;
import org.junit.Test;
import net.lfh.shop.dao.OrderDao;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.List;
public class TestOrderDaoImpl {
@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("没有订单!");
}
}
@Test
/**
* 插入订单
*/
public void testInsert() {
Order order = new Order();
order.setId(3);
order.setUsername("李世兰");
order.setTelephone("18087902755");
order.setTotalPrice(1000);
order.setDeliveryAddress("泸职院信息工程系");
order.setOrderTime(Timestamp.valueOf(LocalDateTime.now()));
OrderDao dao = new OrderDaoImpl();
int count = dao.insert(order);
if (count > 0) {
System.out.println("恭喜,订单记录插入成功!");
} else {
System.out.println("遗憾,订单记录插入失败!");
}
}
@Test
/**
* 按照标识符删除订单
*/
public void testDeleteById() {
OrderDao orderDao = new OrderDaoImpl();
Order order = orderDao.findById(1);
order.setId(1);
orderDao.deleteById(1);
int count = orderDao.deleteById(1);
if (count > 0) {
System.out.println("遗憾,删除失败!");
} else {
System.out.println("恭喜,删除成功!");
}
}
@Test
/**
* 更新订单
*/
public void testUpdate() {
OrderDao orderDao = new OrderDaoImpl();
Order order = orderDao.findById(3);
order.setUsername("李康如");
order.setTelephone("17667571363");
order.setTotalPrice(222222);
order.setDeliveryAddress("安徽省亳州市");
orderDao.update(order);
int count = orderDao.update(order);
if (count > 0) {
System.out.println("恭喜,更新成功");
} else {
System.out.println("遗憾,更新失败");
}
}
@Test
/**
* 查询最后一个订单
*/
public void testFindLast() {
OrderDao orderDao = new OrderDaoImpl();
Order order = orderDao.findLast();
System.out.println(order);
if(order !=null){
System.out.println("恭喜,最后一条查询成功!");
}else {
System.out.println("遗憾,最后一条查询失败!");
}
}
@Test
/**
* 按标识符查询订单
*/
public void testFindById(){
OrderDao dao = new OrderDaoImpl();
Order order = dao.findById(3);
System.out.println(order);
}
}
(七)数据访问服务类XXXService
在src里创建net.lfh.shop.service包,在里面创建四个服务类:UserService、CategoryService、ProductService与OrderService。
1、用户服务类UserService
package net.lfh.shop.service;
/**
* 功能:用户服务类
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.shop.bean.User;
import net.lfh.shop.dao.UserDao;
import net.lfh.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);
}
}
2、类别服务类CategoryService
package net.lfh.shop.service;
/**
* 功能:类别服务类
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.shop.bean.Category;
import net.lfh.shop.dao.CategoryDao;
import net.lfh.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();
}
}
3、商品服务类ProductService
package net.lfh.shop.service;
/**
* 功能:商品服务类
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.shop.bean.Product;
import net.lfh.shop.dao.ProductDao;
import net.lfh.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();
}
}
4、订单服务类OrderService
package net.lfh.shop.service;
/**
* 功能:订单服务类
* 作者:李福华
* 日期:2019年12月5日
*/
import java.util.List;
import net.lfh.shop.bean.Order;
import net.lfh.shop.dao.OrderDao;
import net.lfh.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,编写测试方法测试四个服务类里的各个方法。
1、测试类TestUserService,编写测试方法
(1)测试用户登录,testLogin
修改代码,测试结果如下:
(2)测试插入用户信息,testAddUser
(3)测试通过ID删除用户信息,testDeleteUserById
(4)更新用户数据,testUpdateUser
(5)通过id查找用户信息,testFindUserById
(6)通过用户名查找用户信息,testFindUserByName
(7)测试查找所有用户信息,testFindAllUsers
测试类TestUserService的完整代码如下:
package net.lfh.shop.service;
import net.lfh.shop.bean.User;
import org.junit.Test;
import java.sql.Timestamp;
import java.util.Date;
import java.util.List;
public class TestUserService {
@Test
/**
*测试用户登录
*/
public void testLogin() {
UserService service = new UserService();
String username, password;
username = "admin";
password = "12345";
User user = service.login(username, password);
if (user != null) {
System.out.println("恭喜,用户名与密码正确,登录成功!");
} else {
System.out.println("遗憾,用户名或密码错误,登录失败!");
}
}
@Test
/**
* 测试插入用户信息
*/
public void testAddUser() {
User user = new User();
user.setId(100);
user.setUsername("兰兰");
user.setRegisterTime(new Timestamp(new Date().getTime()));
user.setPassword("666");
UserService service = new UserService();
int count = service.addUser(user);
if (count > 0) {
System.out.println("恭喜,学生记录插入成功!");
} else {
System.out.println("遗憾,学生记录插入失败!");
}
}
@Test
/**
* 测试通过ID删除用户信息
*/
public void testDeleteUserById() {
UserService service = new UserService();
String id = "2";
int count = service.deleteUserById(1);
if (count > 0) {
System.out.println("恭喜,学生记录删除成功!");
} else {
System.out.println("遗憾,学生记录删除失败!");
}
}
@Test
/**
* 更新用户数据
*/
public void testUpdateUser() {
UserService service = new UserService();
User user = service.findUserById(2);
user.setUsername("小小");
int count = service.updateUser(user);
if (count > 0) {
System.out.println("更新成功!");
} else {
System.out.println("更新失败!");
}
}
@Test
/**
* 通过id查找用户信息
*/
public void testFindUserById() {
UserService service = new UserService();
User user = service.findUserById(2);
System.out.println(user);
}
@Test
/**
* 通过用户名查找用户信息
*/
public void testFindUserByName(){
UserService service=new UserService();
String username="李福华";
List<User> users=service.findUsersByUsername(username);
for (User user:users){
System.out.println(user);
}
}
@Test
/**
* 测试查找所有用户信息
*/
public void testFindAllUsers() {
UserService service = new UserService();
List<User> users = service.findAllUsers();
for (User user : users) {
System.out.println(user);
}
}
}
2、测试类TestCategoryService,编写测试方法
(1)测试添加信息,testAddCategory
(2)测试通过id删除品类信息,testDeletCategory
修改测试代码,结果如下:
(3)更新种类记录,testUpdateCategory
(4)查询品类全部信息,testFindAllCategories
测试类TestCategoryService的完整代码如下:
package net.lfh.shop.service;
import net.lfh.shop.bean.Category;
import org.junit.Test;
import java.util.List;
public class TestCategoryService {
@Test
public void testAddCategory(){
Category category=new Category();
category.setName("水果海鲜");
CategoryService service=new CategoryService();
int count=service.addCategory(category);
if (count>0){
System.out.println("恭喜,添加信息成功");
}else {
System.out.println("遗憾,添加信息失败");
}
}
@Test
public void testDeletCategory(){
CategoryService service=new CategoryService();
String id= "3";
int count=service.deleteCategoryById(7);
if (count>0){
System.out.println("恭喜,删除成功!");
}else {
System.out.println("遗憾,删除失败!");
}
}
@Test
public void testUpdateCategory(){
CategoryService service=new CategoryService();
Category category=service.findCategoryById(3);
category.setName("商用电器");
int count=service.updateCategory(category);
if (count>0){
System.out.println("恭喜,更新记录成功");
category=service.findCategoryById(3);
System.out.println(category);
}else {
System.out.println("遗憾,记录更新失败");
}
}
@Test
public void testFindAllCategories(){
CategoryService service=new CategoryService();
List<Category> categories=service.findAllCategories();
for (Category category:categories){
System.out.println(category);
}
}
}
3、测试类TestProductService,编写测试方法
(1)插入用户信息,testProduct
(2)通过商品id删除商品信息,testDeleteProductById
修改代码,结果如下:
(3)更新商品信息,testUpdateProduct
(4)通过商品id查询商品信息,testFindProductById
(5)通过商品id查找产品信息,testFindProductsByCategoryId
(6)查找所有产品信息,testFindAllProducts
测试类TestProductService完整代码为:
package net.lfh.shop.service;
import net.lfh.shop.bean.Product;
import net.lfh.shop.bean.User;
import org.junit.Test;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.Date;
import java.util.List;
public class TestProductService {
@Test
/**
* 插入用户信息
*/
public void testProduct() {
Product product = new Product();
product.setId(16);
product.setName("围巾");
product.setAddTime(Timestamp.valueOf(LocalDateTime.now()));
product.setCategoryId(3);
ProductService service = new ProductService();
int count = service.addProduct(product);
if (count > 0) {
System.out.println("恭喜,商品记录插入成功!");
} else {
System.out.println("遗憾,商品记录插入失败!");
}
}
@Test
/**
* 通过商品id删除商品信息
*/
public void testDeleteProductById() {
ProductService service = new ProductService();
int count = service.deleteProductById(2);
if (count > 0) {
System.out.println("恭喜,商品记录删除成功!");
} else {
System.out.println("遗憾,商品记录删除失败!");
}
}
@Test
/**
* 更新商品信息
*/
public void testUpdateProduct() {
ProductService service = new ProductService();
Product product = service.findProductById(10);
int count = service.updateProduct(product);
if (count > 0){
System.out.println("恭喜,商品记录更新成功!");
}else{
System.out.println("遗憾,商品记录更新失败!");
}
}
@Test
/**
* 通过商品id查询商品信息
*/
public void testFindProductById() {
ProductService service = new ProductService();
Product product = service.findProductById(10);
System.out.println(product);
}
@Test
/**
* 通过商品id查找产品信息
*/
public void testFindProductsByCategoryId(){
ProductService service = new ProductService();
List<Product> products = service.findProductsByCategoryId(4);
for (Product product:products){
System.out.println(product);
}
}
@Test
/**
* 查找所有产品信息
*/
public void testFindAllProducts(){
ProductService service = new ProductService();
List<Product> products = service.findAllProducts();
for (Product product:products){
System.out.println(product);
}
}
}
3、测试类TestOrderService,编写测试方法
(1)添加订单信息,testAddOrder
(2)删除订单信息,testDeleteOrderById
(3)更新订单信息,testUpdateOrder
(4)查询所有订单信息,testFindAllOrders
(5)查询最后一条订单信息,testFindLastOrders
测试类TestOrderService的完整代码为:
package net.lfh.shop.service;
import net.lfh.shop.bean.Order;
import org.junit.Test;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.List;
public class TestOrderService {
@Test
public void testAddOrder(){
Order order=new Order();
order.setUsername("鑫鑫鑫");
order.setTelephone("19023428999");
order.setDeliveryAddress("泸职院");
order.setTotalPrice(9889);
order.setOrderTime(Timestamp.valueOf(LocalDateTime.now()));
OrderService service=new OrderService();
int count=service.addOrder(order);
if (count>0){
System.out.println("恭喜,添加信息成功");
}else {
System.out.println("遗憾,添加信息失败");
}
}
@Test
public void testDeleteOrderById(){
OrderService service=new OrderService();
int id=1;
int count=service.deleteOrderById(3);
if (count>0){
System.out.println("恭喜,删除成功");
}else {
System.out.println("遗憾,删除失败");
}
}
@Test
public void testUpdateOrder(){
OrderService service=new OrderService();
Order order=service.findOrderById(4);
order.setUsername("AAAAA");
order.setTelephone("18923472839");
order.setOrderTime(Timestamp.valueOf(LocalDateTime.now()));
order.setDeliveryAddress("泸职院英语教育");
int count=service.updateOrder(order);
if (count>0){
System.out.println("恭喜,更新记录成功");
}else {
System.out.println("遗憾,记录更新失败");
}
}
@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("无信息");
}
}
@Test
public void testFindLastOrders(){
OrderService service=new OrderService();
Order order=service.findLastOrder();
System.out.println(order);
if(order !=null){
System.out.println("恭喜,最后一条查询成功!");
}else {
System.out.println("遗憾,最后一条查询失败!");
}
}
}
通过此次Dao层以及服务层测试代码的编写,我知道了,除了要junit的包4.0以上的,还要spring-test的包,然后在测试类上使用RunWith和ContextConfiguration注解,还有方法上要加Test注解。Dao层是直接连接数据库的最底层,可以直接操作数据库,进行增删改查,service操作数据时直接调用Dao层的接口,无需知道具体实现内容。
来源:CSDN
作者:地球层次�
链接:https://blog.csdn.net/qq_Lisa/article/details/103412075