当前位置:   article > 正文

java第一阶段(day16)超市管理系统_超市管理系统java

超市管理系统java

1.创建项目 surpermarmarket

 

2.引入依赖(4个jar包) surpermarmarket.lib包下

3.写配置文件(创建数据库连接池) surpermarmarket.druid.properties

  1. username=root
  2. password=root
  3. url=jdbc:mysql://127.0.0.1:3306/supermarket?characterEncoding=utf-8 (防止乱码)
  4. driverClassName=com.mysql.cj.jdbc.Driver

4.创建包 src.com.javasm.bean等,这里忘记写com.javssm jar文件放到了dir包里

注:路径不要出现java单个的

5.建库surpermarmarket,新建第一张表type(商品类型表)

注:字段名里不要带is,尤其是boolean类型

 6.编码工作

6.1写APP接口   surpermarmarket.src.App  (客户端)

  1. public class APP {
  2. public static void main(String[] args) {
  3. new SupermarketMgr().start();
  4. }
  5. }

6.2新建测试类   surpermarmarket.src.SupermarketMgr

含根据登录名选角色方法,登录方法,管理员方法,收银员方法等

  1. public class SupermarketMgr {
  2. public void start() {
  3. login(); //根据登录用户的用户名和密码进行判断是哪个角色
  4. }

6.3新建封装录入Scanner的类   util.InputUtil 

  1. public class InputUtil {
  2. private InputUtil(){}
  3. private static Scanner input;
  4. static{
  5. input = new Scanner(System.in);
  6. }
  7. public static String inputStr(){
  8. return input.next();
  9. }
  10. public static void close(){
  11. input.close();
  12. }
  13. }

6.4新建枚举类,放管理员,收银员账号,密码。    common.RoleEnum

  1. @AllArgsConstructor
  2. @Getter
  3. public enum RoleEnum {
  4. ADMIN("admin","1234"),
  5. CASHIER("cashier","1234");
  6. private final String name;
  7. private final String pass;
  8. }

6.5写登录方法,并选择管理员菜单或者收银员菜单

  1. private void login() {
  2. System.out.println("----------------欢迎登录----------------");
  3. System.out.println("请录入用户名:");
  4. String name = InputUtil.inputStr();
  5. System.out.println("请录入密码:");
  6. String pass = InputUtil.inputStr();
  7. if(Objects.equals(name, RoleEnum.ADMIN.getName())&&Objects.equals(pass, RoleEnum.ADMIN.getPass())){
  8. //管理员
  9. adminMenu();
  10. }else if(Objects.equals(name, RoleEnum.CASHIER.getName())&&Objects.equals(pass, RoleEnum.CASHIER.getPass())){
  11. //收银员
  12. cashierMenu();
  13. }else{
  14. InputUtil.close();
  15. throw new RuntimeException("录入用户名或者密码有误,不存在此用户,请联系管理员");
  16. }
  17. }

6.6 写管理员菜单---商品类型管理,商品管理,会员管理三个功能

  1. private void adminMenu() {
  2. System.out.println("欢迎你"+RoleEnum.ADMIN.getName());
  3. String str;
  4. do {
  5. System.out.println("1.商品类型管理");
  6. System.out.println("2.商品管理");
  7. System.out.println("3.会员管理");
  8. System.out.println("4.退出");
  9. int choice = InputUtil.inputInt("^[1-4]$","请录入1-4数据:");
  10. switch (choice) {
  11. case 1:
  12. //1.商品类型管理
  13. break;
  14. case 2:
  15. //2.商品管理
  16. break;
  17. case 3:
  18. //3.会员管理
  19. break;
  20. case 4:
  21. //4.退出
  22. System.out.println("程序退出");
  23. return;
  24. }
  25. System.out.println("是否继续操作?y/n");
  26. str = InputUtil.inputStr();
  27. } while (str.equalsIgnoreCase("y"));
  28. }

这里需在封装录入的Scanner类中加入输入int型数据方法:

  1. public static int inputInt(String regex, String msg) {
  2. while (true) {
  3. System.out.println(msg);
  4. String str = input.next();
  5. if(str.matches(regex)){
  6. return Integer.parseInt(str);
  7. }
  8. }
  9. }

同时在登录入口处给出资源释放:(省去每次用一个菜单,释放一次资源)

  1. public void start() {
  2. login(); //根据登录用户的用户名和密码进行判断是哪个角色
  3. InputUtil.close();
  4. }

6.7新建商品类型管理模块(新增,删除,修改,查询,退出)   先新建menu包,包下新建TypeMenu

  1. public class TypeMenu {
  2. public void menu(){
  3. String s;
  4. do {
  5. System.out.println("1.新增类型");
  6. System.out.println("2.删除类型");
  7. System.out.println("3.修改类型");
  8. System.out.println("4.层级查询类型");
  9. System.out.println("5.退出");
  10. int choice = InputUtil.inputInt("^[1-5]$", "请录入1-5的数据:");
  11. switch (choice) {
  12. case 1:
  13. //1.新增类型
  14. break;
  15. case 2:
  16. //2.删除类型
  17. break;
  18. case 3:
  19. //3.修改类型
  20. break;
  21. case 4:
  22. //4.层级查询类型
  23. break;
  24. case 5:
  25. //5.退出
  26. break;
  27. }
  28. System.out.println("是否继续?y/n");
  29. s = InputUtil.inputStr();
  30. } while (Objects.equals(s,"y"));
  31. }
  32. }

6.8一般增删改都是看着信息进行,故先完成查询功能。这些需要dao,service,impl,sql等。

在sql包下新建TypeSql

  1. public interface TypeSql {
  2. //查询所有类型的数据
  3. String FIND_ALL_TYPE = "select * from type";
  4. }

在bean包逆向引入Type   修改不符合jdbc的字段类型

  1. @Setter
  2. @Getter
  3. @ToString
  4. public class Type {
  5. private Integer id;
  6. private String typeName;
  7. private Integer parentId;
  8. private boolean parent;
  9. private boolean typeStatus;
  10. private java.util.Date createTime;
  11. private java.util.Date updateTime;
  12. }

在dao包新建TypeDao

  1. public interface TypeDao {
  2. List<Type> findAllType() throws Exception;
  3. }

在dao.impl包下新建TypeDaoImpl

  1. public class TypeDaoImpl implements TypeDao {
  2. @Override
  3. public List<Type> findAllType() throws Exception {
  4. return new QueryRunner(数据源).query(TypeSql.FIND_ALL_TYPE,new BeanListHandler<>(Type.class,new BasicRowProcessor(new GenerousBeanProcessor())));
  5. }
  6. }

故此时要建立数据源  在util包下新建DruidUtil

  1. public class DruidUtil {
  2. private DruidUtil(){
  3. }
  4. private static DataSource dataSource;
  5. static {
  6. Properties properties = new Properties();
  7. try {
  8. properties.load(new FileInputStream("src/druid.properties"));
  9. dataSource = DruidDataSourceFactory.createDataSource(properties);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. public static DataSource getDataSource(){
  15. return dataSource;
  16. }
  17. }

相应的可增加配置文件的初始值和默认最大值:

  1. username=root
  2. password=root
  3. url=jdbc:mysql://127.0.0.1:3306/supermarket?characterEncoding=utf-8
  4. driverClassName=com.mysql.cj.jdbc.Driver
  5. initialSize=5
  6. maxActive=15

回到TypeDaoImpl将数据源添加进去:

  1. public class TypeDaoImpl implements TypeDao {
  2. @Override
  3. public List<Type> findAllType() throws Exception {
  4. return new QueryRunner(DruidUtil.getDataSource()).query(TypeSql.FIND_ALL_TYPE,new BeanListHandler<>(Type.class,new BasicRowProcessor(new GenerousBeanProcessor())));
  5. }
  6. }

在service包下新建TypeService类:

  1. public interface TypeService {
  2. void findAllType();
  3. }

在service包下新建impl包,新建TypeServiceImpl类:

  1. public class TypeServiceImpl implements TypeService {
  2. private static final TypeDao typeDao = new TypeDaoImpl();
  3. @Override
  4. public void findAllType() {
  5. try {
  6. List<Type> typeList = typeDao.findAllType();
  7. String str = "|-";
  8. for (Type type : typeList) {
  9. if(type.getParentId().equals(0)){
  10. System.out.println(str+type.getTypeName());
  11. //找指定父类型的子级类型
  12. findChildType(type,"| "+str,typeList);
  13. }
  14. }
  15. } catch (Exception e) {
  16. e.printStackTrace();
  17. }
  18. }
  19. private void findChildType(Type parentType, String s, List<Type> typeList) {
  20. for (Type type : typeList) {
  21. if(type.getParentId().equals(parentType.getId())){
  22. System.out.println(s+type.getTypeName());
  23. //如果子级类型是父级类型
  24. if(type.isParent()){
  25. findChildType(type,"| "+s,typeList);
  26. }
  27. }
  28. }
  29. }
  30. }

相应的在TypeMenu类里增加如下语句:

  1. private static final TypeService typeService = new TypeServiceImpl();
  2. private void showTypeByLevel() {
  3. System.out.println("类型信息展示如下:");
  4. typeService.findAllType();
  5. }

6.9为了测试管理员菜单下的商品类型管理模块的层级查询功能代码是否正确,先将测试类里的收银员菜单添加。

  1. private void cashierMenu() {
  2. System.out.println("欢迎你"+RoleEnum.CASHIER.getName());
  3. String str;
  4. do {
  5. System.out.println("1.购买管理");
  6. System.out.println("2.订单查询");
  7. System.out.println("3.排行统计");
  8. System.out.println("4.退出");
  9. int choice = InputUtil.inputInt("^[1-4]$","请录入1-4数据:");
  10. switch (choice) {
  11. case 1:
  12. new TypeMenu().menu();
  13. //1.购买管理
  14. break;
  15. case 2:
  16. //2.订单查询
  17. break;
  18. case 3:
  19. //3.排行统计
  20. break;
  21. case 4:
  22. //4.退出
  23. System.out.println("程序退出");
  24. return;
  25. }
  26. System.out.println("是否继续操作?y/n");
  27. str = InputUtil.inputStr();
  28. } while (str.equalsIgnoreCase("y"));
  29. }

同时在管理员菜单的switch中的case1下增加:

new TypeMenu().menu();

6.10类型的信息一般是不变的,没必要每次查询都掉数据库。可将其放入缓存,每次查前判断缓存是否为空,空则查数据库,并放入缓存,不空则直接查缓存。

缓存优点:提高了查询的性能      缺点:数据库更新,缓存不知道,不能实时同步,每次更新,都要及时更改缓存数据

在TypeServiceImpl中增加缓存,并修改相应查询代码:

  1. private static Map<String,Object> cache = new HashMap<>(16);
  2. @Override
  3. public void findAllType() {
  4. try {
  5. List<Type> typeList = (List<Type>) cache.get("typeList"); //先从缓存拿数据
  6. if(typeList == null){ //缓存为空
  7. typeList = typeDao.findAllType(); //操作数据库
  8. cache.put("typeList",typeList); //并将数据放入缓存
  9. }
  10. String str = "|-";
  11. for (Type type : typeList) {
  12. if(type.getParentId().equals(0)){
  13. System.out.println(str+type.getId()+":"+type.getTypeName());
  14. //找指定父类型的子级类型
  15. findChildType(type,"| "+str,typeList);
  16. }
  17. }
  18. } catch (Exception e) {
  19. e.printStackTrace();
  20. }
  21. }

6.11接着做管理员菜单下商品类型管理的新增功能:

在TypeMenu的switch的case1:下添加:

 addTypeFun();

并且在该类里添加该方法,具体些什么还不清楚,先从dao开始写:

  1. //新增
  2. int addType(Type type) throws Exception; //int两层意思:1.受影响记录数(先按这个来) 2.自增id 参数是完整的类型对象

在TypeSql中加入新增sql

  1. //新增
  2. String INSERT_TYPE = "insert into type (type_name, parent_id, parent, type_status) values (?,?,?,?)";

在daoImpl里:

为避免每次来个方法都new QueryRunner,可将其提出,并初始化。

  1. //新增
  2. @Override
  3. public int addType(Type type) throws Exception {
  4. //只要是新增的都是可用的,故将最后一个属性直接写死,写成1
  5. return queryRunner.update(TypeSql.INSERT_TYPE,type.getTypeName(),type.getParentId(),type.isParent(),1);
  6. }

在service中:

int addType(Type type);

在serviceImpl中:

异常用@SneakyThrows抛出:

  1. //新增:
  2. @Override
  3. @SneakyThrows
  4. public int addType(Type type) {
  5. return typeDao.addType(type);
  6. }

回到TypeMenu,补全新增的方法:

  1. private void addTypeFun() {
  2. Type type = new Type();
  3. System.out.println("请录入新的类型名称:"); //刚才已分析,最后一个属性已写死,只需录入三个属性
  4. String typeName = InputUtil.inputStr();
  5. type.setTypeName(typeName);
  6. typeService.findAllType(); //给该类型指定父级类型,应该看着信息给,故应先查询
  7. System.out.println("请指定该<<"+typeName+">>类型的父级类型:(作为1级类型 请给0)");
  8. int parentId = InputUtil.inputInt(); //这里输入的内容不需要正则,在InputUtil里重载inputInt()的方法
  9. if(parentId==0){
  10. type.setParent(true);
  11. }
  12. type.setParentId(parentId);
  13. typeService.addType(type);
  14. System.out.println("新增<<"+typeName+">>成功");
  15. }

在InputUtil里重载inputInt():

  1. public static int inputInt(){
  2. return input.nextInt();
  3. }

当新增“中央空调后”,作为父级的空调并没有修改,其列parent数据仍为0,查询时将无法展示其子级中央空调。

 故新增时,若为表中原有的类型的子级,且原类型的parent字段数据为0时,需要修改父级的记录:

在TypeMenu的addTypeFun()中删除判断parentId==0的代码,剩余代码为:

  1. private void addTypeFun() {
  2. Type type = new Type();
  3. System.out.println("请录入新的类型名称:"); //刚才已分析,最后一个属性已写死,只需录入三个属性
  4. String typeName = InputUtil.inputStr();
  5. type.setTypeName(typeName);
  6. typeService.findAllType(); //给该类型指定父级类型,应该看着信息给,故应先查询
  7. System.out.println("请指定该<<"+typeName+">>类型的父级类型:(作为1级类型 请给0)");
  8. int parentId = InputUtil.inputInt(); //这里输入的内容不需要正则,在InputUtil里重载inputInt()的方法
  9. type.setParentId(parentId);
  10. typeService.addType(type);
  11. System.out.println("新增<<"+typeName+">>类型成功");
  12. }

从新增的类型中可通过parentId找到其父类id,但通过id查找类型的方法还没有,故应先在TypeDao里创建该方法:

  1. //根据id查询类型
  2. Type findTypeById(Integer TypeId) throws Exception;

在TypeSql新增sql语句

  1. //根据id查询类型
  2. String FIND_TYPE_BY_ID = "select * from type where id = ? ";

在TypeDaoImpl里实现该方法:

  1. @Override
  2. public Type findTypeById(Integer TypeId) throws Exception {
  3. return queryRunner.query(TypeSql.FIND_TYPE_BY_ID,new BeanHandler<>(Type.class, new BasicRowProcessor(new GenerousBeanProcessor())), TypeId);
  4. }

找到父级类型的信息后,若父级类型的parent是0,那就要修改其为1.故还要新建修改的方法:

在TypeDao里:

  1. //修改类型信息
  2. int updateTypeById(Type parentType) throws Exception;

在TypeSql新增sql语句:

  1. //修改类型信息
  2. String UPDATE_TYPE_BY_ID = "update type set type_name = ?, parent_id = ?, parent = ?, type_status = ? where id = ?";

在TypeDaoImpl里实现该方法:

  1. @Override
  2. public int updateTypeById(Type parentType) throws Exception{
  3. return queryRunner.update(TypeSql.UPDATE_TYPE_BY_ID,
  4. parentType.getTypeName(),parentType.getParentId(),parentType.isParent(), parentType.isTypeStatus(),parentType.getId()
  5. );
  6. }

回到TypeServiceImpl中,代码修改为:

  1. //新增:
  2. @Override
  3. @SneakyThrows
  4. public int addType(Type type) {
  5. //新增前,要判断指定的父级类型是否作为父类型使用,若不是需要更改该记录
  6. Integer parentId = type.getParentId(); //新增类型的父类型的id
  7. if(parentId!=0){
  8. Type parentType = typeDao.findTypeById(parentId); //根据父类类型id查其parent列是什么,故这里要创建findTypeById()方法
  9. if(!parentType.isParent()){
  10. parentType.setParent(true);
  11. //修改父级类型的数据
  12. typeDao.updateTypeById(parentType);
  13. }
  14. }else type.setParent(true);
  15. return typeDao.addType(type);
  16. }

6.12删除类型功能

在TypeMenu里switch中case3中加如下语句:

deleteTypeFun();

并在该类中新增该方法。删除也是看着信息删,故删之前可调该类中的层级展示的方法。

  1. private void deleteTypeFun() {
  2. showTypeByLevel();
  3. System.out.println("请录入要删除的类型id:");
  4. int typeId = InputUtil.inputInt();
  5. typeService.deleteType(typeId);
  6. System.out.println("删除类型id<<"+typeId+">>成功");
  7. }

在TypeService中创建deleteType()方法:

  1. //删除类型信息
  2. void deleteType(int typeId);

在TypeServiceImpl中实现该方法:

  1. //删除
  2. @Override
  3. @SneakyThrows
  4. public void deleteType(int typeId) {
  5. typeDao.deleteTypeById(typeId);
  6. }

在TypeDao里补全该方法:

  1. //删除
  2. void deleteTypeById(int typeId) throws Exception;

在TypeSql里增加sql语句:

  1. //删除
  2. String DELETE_TYPE_BY_ID = "dalete from type where id = ?";

在TypeDaoImpl里实现该方法:

  1. @Override
  2. public void deleteTypeById(int typeId) throws Exception {
  3. queryRunner.update(TypeSql.DELETE_TYPE_BY_ID,typeId);
  4. }

删除是有要求的:父类类型不能删,即删除前应该判断是否有子级,有子级就不要删了。如何保证它是一个父级,还是查询。      类型是子级的也不能随便删,没有商品关联才可以删,有商品关联也不能删。

 

 如上图,三开门冰箱虽然没有子级,但和商品表有关联,不能删。(删除后商品表中海尔三开门冰箱的type_id的10不知道是谁)

该子级类型是否有商品关联,还是查询,这是商品dao的功能,故在TypeServiceImpl中增加:

private static final ProductDao producyDao = new ProductDaoImpl();

  在dao包新建ProductDao:

  1. public interface ProductDao {
  2. }

在dao.impl包下创建其实现类:

  1. public class ProductDaoImpl implements ProductDao {
  2. @Override
  3. public List<Product> findProductByTypeId(int typeId) {
  4. return null;
  5. }
  6. }

在bean包下逆向引入商品表:

在ProductDao新建方法:

  1. //根据类型id查询关联的商品
  2. List<Product> findProductByTypeId(int typeId) throws Exception;

在ProductDaoImpl中实现该方法:

  1. public class ProductDaoImpl implements ProductDao {
  2. private static final QueryRunner queryRunner = new QueryRunner(DruidUtil.getDataSource());
  3. @Override
  4. public List<Product> findProductByTypeId(int typeId) throws Exception{
  5. return queryRunner.query(ProductSql.FIND_PRODUCT_BY_TYPE,
  6. new BeanListHandler<>(Product.class,new BasicRowProcessor(new GenerousBeanProcessor())),typeId);
  7. }
  8. }

在sql包下创建ProductSql接口,写商品的sql

  1. public interface ProductSql {
  2. String FIND_PRODUCT_BY_TYPE = "select * from product where type_id=? ";
  3. }

在TypeServiceImpl类中,修改deleteType方法:

  1. //删除
  2. @Override
  3. @SneakyThrows
  4. public void deleteType(int typeId) {
  5. Type type = typeDao.findTypeById(typeId); //只要是删除都是有查询的
  6. String typeName = type.getTypeName();
  7. //若类型是作为父级类型使用,不能删除
  8. if(type.isParent()){
  9. System.out.println("<<"+typeName+">>是作为父类型的,无法删除");
  10. return;
  11. }
  12. //若删除子级类型,在没有商品关联时才可删除,有关联不能删除,因此还是要先查询该类型下是否关联商品。
  13. List<Product> productList = producyDao.findProductByTypeId(typeId);
  14. if(!productList.isEmpty()){
  15. System.out.println("<<"+typeName+">>关联了具体的商品,无法删除");
  16. return;
  17. }
  18. //到底是否真的删除,看具体需求,仅仅是更改状态还是直接删除这条记录? (目前真的删除)
  19. typeDao.deleteTypeById(typeId);
  20. }

回到TypeMenu中,是否删除,要返回个值来确定,这里暂且用boolean类型(为true,则成功)

  1. private void deleteTypeFun() {
  2. showTypeByLevel();
  3. System.out.println("请录入要删除的类型id:");
  4. int typeId = InputUtil.inputInt();
  5. if (typeService.deleteType(typeId)) {
  6. System.out.println("删除类型id<<"+typeId+">>成功");
  7. }
  8. }

相应的在TypeService中修改返回值类型为boolean

  1. //删除类型信息
  2. boolean deleteType(int typeId);

在实现类中也相应进行修改:

  1. //删除
  2. @Override
  3. @SneakyThrows
  4. public boolean deleteType(int typeId) {
  5. Type type = typeDao.findTypeById(typeId); //只要是删除都是有查询的
  6. String typeName = type.getTypeName();
  7. //若类型是作为父级类型使用,不能删除
  8. if(type.isParent()){
  9. System.out.println("<<"+typeName+">>是作为父类型的,无法删除");
  10. return false;
  11. }
  12. //若删除子级类型,在没有商品关联时才可删除,有关联不能删除,因此还是要先查询该类型下是否关联商品。
  13. List<Product> productList = producyDao.findProductByTypeId(typeId);
  14. if(!productList.isEmpty()){
  15. System.out.println("<<"+typeName+">>关联了具体的商品,无法删除");
  16. return false;
  17. }
  18. //到底是否真的删除,看具体需求,仅仅是更改状态还是直接删除这条记录? (目前真的删除)
  19. typeDao.deleteTypeById(typeId);
  20. return true;
  21. }

6.13接下来就是商品类型管理的修改功能:

在TypeMenu的switch的case3中添加语句,并增加其方法:

updateTypeFun();
  1. private void updateTypeFun() {
  2. TypeService typeService = new TypeServiceImpl();
  3. System.out.println("请录入要修改类型的id:");
  4. int typeId = InputUtil.inputInt();
  5. System.out.println("要修改的类型信息如下:");
  6. Type type = typeService.findTypeById(typeId);
  7. System.out.println("请录入要修改的列:1.type_name 2.parent_id 3.parent 4.type_status");
  8. String choiceStr = InputUtil.inputStr();
  9. String[] array = choiceStr.split(",");
  10. for (String s : array) {
  11. int choice = Integer.parseInt(s);
  12. switch (choice){
  13. case 1:
  14. System.out.println("请录入新的type_name");
  15. String newName = InputUtil.inputStr();
  16. type.setTypeName(newName);
  17. break;
  18. case 2:
  19. System.out.println("请录入新的parent_id");
  20. Integer newId = InputUtil.inputInt();
  21. type.setParentId(newId);
  22. break;
  23. case 3:
  24. System.out.println("请录入新的parent");
  25. boolean newParent = InputUtil.inputBoolean();
  26. type.setParent(newParent);
  27. break;
  28. case 4:
  29. System.out.println("请录入新的type_status");
  30. boolean newStatus = InputUtil.inputBoolean();
  31. type.setTypeStatus(newStatus);
  32. break;
  33. }
  34. }
  35. System.out.println(typeService.updateTypeById(type));
  36. System.out.println("修改类型id<<" + typeId + ">>成功");
  37. }

在TypeService中新增:

  int updateTypeById(Type type);

在TypeServiceImpl中新增:

  1. //修改商品类型
  2. @Override
  3. @SneakyThrows
  4. public int updateTypeById(Type type) {
  5. return typeDao.updateTypeById(type);
  6. }

在TypeDao中调用updateTypeById()方法。

在TypeDaoImpl中调用updateTypeById()方法。

至此,管理员菜单中商品类型管理模块(增删改查)做完。


6.14接下来写管理员菜单下的商品管理模块,对商品表进行添加,删除,修改,查询等。与商品类型管理模块基本一致。

首先在SupermarketMgr中管理员菜单的switch中的case2 中新增(访问商品菜单的入口):

new ProductMenu().menu();

在Menu包下新建ProductMenu类,并新增menu()方法:

  1. public class ProductMenu {
  2. public void menu() {
  3. String s;
  4. do {
  5. System.out.println("---------------------1.新增商品--------------------");
  6. System.out.println("---------------------2.删除商品--------------------");
  7. System.out.println("---------------------3.修改商品--------------------");
  8. System.out.println("---------------------4.分页查询--------------------");
  9. System.out.println("---------------------5.退 出--------------------");
  10. int choice = InputUtil.inputInt("^[1-5]$", "请录入1-5的数据:");
  11. switch (choice) {
  12. case 1:
  13. addProductFun();
  14. break;
  15. case 2:
  16. deleteProductFun();
  17. break;
  18. case 3:
  19. updateProductFun();
  20. break;
  21. case 4:
  22. showProductByPage();
  23. break;
  24. case 5:
  25. System.out.println("程序退出");
  26. return;
  27. }
  28. System.out.println("是否继续操作商品模块?y/n");
  29. s = InputUtil.inputStr();
  30. } while (Objects.equals(s, "y"));
  31. }
  32. }

同理先做4.分页查询:

  1. private void showProductByPage() {
  2. System.out.println("目前在售产品信息如下:");
  3. final int size = 2;
  4. int page = 1;
  5. int totalCount = productService.findProductCount();
  6. int totalPage = totalCount / size;
  7. totalPage = (totalCount % size == 0) ? totalPage : totalPage + 1;
  8. do {
  9. System.out.println("第<<" + page + ">>页信息如下:");
  10. List<Product> productList = productService.findProductByPage(page, size);
  11. productList.forEach(System.out::println);
  12. System.out.println("是否继续查询其他商品?y/n");
  13. String s = InputUtil.inputStr();
  14. if (Objects.equals("n", s)) {
  15. break;
  16. }
  17. page = continuePage(totalPage);
  18. } while (true);
  19. }

首先需要查询总记录数,才能知道页数,故先求总页数:

在service包下新建ProductService类,并新增求总页数的方法:

int findProductCount();

在Service.Impl包下新建ProductServiceImpl类,并实现上述方法:

  1. @SneakyThrows
  2. @Override
  3. public int findProductCount() {
  4. return productDao.findProductCount();
  5. }

在dao包下新建ProductDao类,并新增该方法:

int findProductCount() throws Exception;

在sql包下新建ProductSql类,并新增查询总记录数的sql:

 String FIND_PRODUCT_COUNT = "SELECT count(*) FROM product WHERE prod_status=1";

在dao.impl包下新建ProductDaoImpl类,并实现该方法:

  1. @Override
  2. public int findProductCount() throws Exception {
  3. return queryRunner.query(ProductSql.FIND_PRODUCT_COUNT, new ScalarHandler<Long>()).intValue();
  4. }

查得总记录数后,就可根据指定页数查询商品信息,在ProductSerive中新增该方法:

 List<Product> findProductByPage(int page, int size);

在ProductServiceImpl中实现该方法:

  1. @SneakyThrows
  2. @Override
  3. public List<Product> findProductByPage(int page, int size) {
  4. return productDao.findProductByPage(page, size);
  5. }

在ProductDao中新增该方法:

 List<Product> findProductByPage(int page, int size) throws Exception;

在ProductSql中新增该sql:

String FIND_PRODUCT_BY_PAGE = "SELECT * FROM product WHERE prod_status=1 ORDER by id DESC LIMIT ?,?";

在ProductDaoImpl中实现该方法:

  1. @Override
  2. public List<Product> findProductByPage(int page, int size) throws Exception {
  3. return queryRunner.query(
  4. ProductSql.FIND_PRODUCT_BY_PAGE,
  5. new BeanListHandler<>(Product.class, new BasicRowProcessor(new GenerousBeanProcessor())),
  6. (page - 1) * size, size);
  7. }

以上分页查询,刚打开页面展示的是第一页信息,还应该有个指定页数的方法,故在ProductMenu类中的该分页查询功能中抽出一个指定页数的方法:

  1. private int continuePage(int totalPage) {
  2. for (int pageNum = 1; pageNum <= totalPage; pageNum++) {
  3. System.out.print(pageNum + "\t");
  4. }
  5. System.out.println();
  6. System.out.println("请录入要查看的页数:");
  7. return InputUtil.inputInt();
  8. }

至此,分页查询功能结束。

接下来在ProductMenu中做新增和修改商品功能,录入商品所属类型应该看着商品类型进行录入:

  1. private void addProductFun() {
  2. Product product = new Product();
  3. System.out.println("请录入商品的名称:");
  4. product.setProdName(InputUtil.inputStr());
  5. typeService.findAllType();
  6. System.out.println("请选择商品所属类型:");
  7. product.setTypeId(InputUtil.inputInt());
  8. System.out.println("请录入商品库存:");
  9. product.setProdStore(InputUtil.inputInt());
  10. System.out.println("请录入商品单价:");
  11. product.setProdPrice(Double.parseDouble(InputUtil.inputStr()));
  12. System.out.println("请录入商品图片路径:");
  13. product.setProdImage(InputUtil.inputStr());
  14. System.out.println("请录入商品状态: 1. 在售 2. 下架 3.删除");
  15. product.setProdStatus(InputUtil.inputInt());
  16. System.out.println("请录入商品描述:");
  17. product.setProdDesc(InputUtil.inputStr());
  18. System.out.println(productService.addAndUpdateProduct(product));
  19. System.out.println("新增商品<<" + product.getProdName() + ">>成功");
  20. }

在ProductService中新增该方法:

int addAndUpdateProduct(Product product);

在ProductService中实现该方法:

  1. @SneakyThrows
  2. @Override
  3. public int addAndUpdateProduct(Product product) {
  4. String prodImage = product.getProdImage();
  5. if (!prodImage.isBlank() && !prodImage.startsWith("upload")) {
  6. //商品图片上传
  7. product.setProdImage(FileUtil.uploadProductImage(product.getProdImage()));
  8. }
  9. if (product.getId() == null) {
  10. return productDao.addProduct(product);
  11. }
  12. return productDao.updateProductById(product);
  13. }

在ProductDao中创建新增商品方法:

 int addProduct(Product product) throws Exception;

在ProductSql中增加新增的sql

String ADD_PRODUCT = "INSERT INTO product (prod_name, type_id, prod_price, prod_store, prod_image, prod_status, prod_desc) VALUES (?,?,?,?,?,?,?)";

在ProductDaoImpl中实现该方法:

  1. @Override
  2. public int addProduct(Product product) throws Exception {
  3. return queryRunner.update(ProductSql.ADD_PRODUCT,
  4. product.getProdName(),
  5. product.getTypeId(),
  6. product.getProdPrice(),
  7. product.getProdStore(),
  8. product.getProdImage(),
  9. product.getProdStatus(),
  10. product.getProdDesc()
  11. );
  12. }

在ProductDao中创建修改商品的方法:

int updateProductById(Product product) throws Exception;

在ProductSql中增加修改的sql:

 String UPDATE_PRODUCT_BY_ID = "UPDATE product SET prod_name=?, type_id=?, prod_price=?, prod_store=?, prod_image=?, prod_status=?, prod_desc=? WHERE id=?";

在ProductDaoImpl中实现该方法:

  1. @Override
  2. public int updateProductById(Product product) throws Exception {
  3. return queryRunner().update(ProductSql.UPDATE_PRODUCT_BY_ID,
  4. product.getProdName(),
  5. product.getTypeId(),
  6. product.getProdPrice(),
  7. product.getProdStore(),
  8. product.getProdImage(),
  9. product.getProdStatus(),
  10. product.getProdDesc(),
  11. product.getId()
  12. );
  13. }

至此,新增和修改的方法结束。

接下来是删除商品的功能,在ProductMenu中新增该方法:

  1. private void deleteProductFun() {
  2. System.out.println("请录入要删除的商品id:");
  3. int productId = InputUtil.inputInt();
  4. System.out.println("确认删除吗?y/n");
  5. String str = InputUtil.inputStr();
  6. if (Objects.equals("n", str)) return;
  7. Product product = productService.findProductById(pid);
  8. product.setProdStatus(3);
  9. productService.deleteProduct(productId);
  10. System.out.println("删除id为<<" + pid + ">>商品成功");
  11. }

在ProductService中增加删除的方法:

  1. //删除商品
  2. void deleteProduct(int productId);

在ProductServiceImpl中实现该方法:

  1. @Override
  2. @SneakyThrows
  3. public void deleteProduct(int productId) {
  4. productDao.deleteProduct(productId);
  5. }

在ProductDao中增加该方法:

  1. //删除商品
  2. void deleteProduct(int productId) throws Exception;

在ProductSql中增加删除的sql:

 String DELETE_PRODUCT ="delete from product where id = ?";

在ProductDaoImpl中实现该方法:

  1. @Override
  2. public void deleteProduct(int productId) throws Exception {
  3. queryRunner.update(ProductSql.DELETE_PRODUCT,productId);
  4. }

至此,商品管理模块结束。


管理员菜单中的会员管理模块,有添加会员,修改会员,查询会员,会员充值的功能,是对会员信息表的增删改查,和上面两个模块一模一样,这里略。


接下来做收银员部分,收银员菜单有1.购物车模块2.订单查询3.排行统计三个模块。先看第一个模块。

  1. //收银员的模块
  2. private void cashierMenu() {
  3. String str;
  4. do {
  5. System.out.println("1.购物车模块");
  6. System.out.println("2. 订单查询");
  7. System.out.println("3. 排行统计");
  8. System.out.println("4. 退 出");
  9. int choice = InputUtil.inputInt("^[1-4]$", "请录入1-4之间的数据:");
  10. switch (choice) {
  11. case 1:
  12. new CartMenu().menu();
  13. break;
  14. case 2:
  15. break;
  16. case 3:
  17. break;
  18. case 4:
  19. System.out.println("程序退出");
  20. return;
  21. }
  22. System.out.println("是否继续操作收银员模块?y/n");
  23. str = InputUtil.inputStr();
  24. } while (Objects.equals("y", str));
  25. }

在Menu包下新建CartMenu类,并新建menu()方法。

  1. public class CartMenu {
  2. public void menu() {
  3. String s;
  4. do {
  5. System.out.println("---------------------1.购买指定商品--------------------");
  6. System.out.println("---------------------2.修改商品数量--------------------");
  7. System.out.println("---------------------3.删除购物车商品--------------------");
  8. System.out.println("---------------------4.查询购物车商品信息--------------------");
  9. System.out.println("---------------------5.支付--------------------");
  10. System.out.println("---------------------6.退 出--------------------");
  11. int choice = InputUtil.inputInt("^[1-6]$", "请录入1-5的数据:");
  12. switch (choice) {
  13. case 1:
  14. buyProductFun();
  15. break;
  16. case 2:
  17. break;
  18. case 3:
  19. break;
  20. case 4:
  21. CartService.showProdList();
  22. break;
  23. case 5:
  24. pay();
  25. break;
  26. case 6:
  27. System.out.println("程序退出");
  28. return;
  29. }
  30. System.out.println("是否继续操作类型模块?y/n");
  31. s = InputUtil.inputStr();
  32. } while (Objects.equals(s, "y"));
  33. }
  34. }

先做第一个功能,在该类中创建该方法。(购买商品,并存储到购物车里)

  1. private static ProductService productService = new ProductServiceImpl();
  2. //购物商品 存储购物车
  3. private void buyProductFun() {
  4. //1.查询目前在售的商品-----> 分页展示
  5. int page = 1;
  6. final int size = 2;
  7. int totalCount = productService.findProductCount();
  8. int totalPage = totalCount / size;
  9. totalPage = (totalCount % size) == 0 ? totalPage : totalPage + 1;
  10. do {
  11. System.out.println("第<<" + page + ">>页的数据如下:");
  12. List<Product> productList = productService.findProductByPage(page, size);
  13. productList.forEach(System.out::println);
  14. int choice = InputUtil.inputInt("^[1-3]$", "请选择功能: 1. 购买指定的商品 2. 继续分页查询 3.结束购买");
  15. switch (choice) {
  16. case 1:
  17. putProdIntoCart();
  18. break;
  19. case 2:
  20. page = continueShowPage(totalPage);
  21. break;
  22. case 3:
  23. return;
  24. }
  25. } while (true);
  26. }

继续分页查询的方法被抽出来,如下:

  1. private int continueShowPage(int totalPage) {
  2. for (int pageCount = 1; pageCount <= totalPage; pageCount++) {
  3. System.out.print(pageCount + "\t");
  4. }
  5. System.out.println("请录入要查询的页数:");
  6. return InputUtil.inputInt();
  7. }

购买指定商品的方法被抽出来,如下:

  1. private void putProdIntoCart() {
  2. System.out.println("请录入要购买的商品id:");
  3. int pid = InputUtil.inputInt();
  4. Product product = productService.findProductById(pid);
  5. System.out.println("购买的商品详情如下:" + product);
  6. String prodName = product.getProdName();
  7. Integer prodStore = product.getProdStore();
  8. System.out.println("请录入要购买的<<" + prodName + ">>数量:");
  9. int buyNum = InputUtil.inputInt();
  10. CartItem cartItem = CartService.getProdById(pid);
  11. int oldNum = 0;
  12. if (cartItem != null) {
  13. oldNum = cartItem.getBuyNum();
  14. }
  15. if (buyNum + oldNum > prodStore) {
  16. System.out.println("<<" + prodName + ">>库存不足 无法购买");
  17. return;
  18. }
  19. //库存ok,可以购买,购买的商品存储在购物车
  20. //题中要求购物车不是一张表,那购物车是一个容器。数组和集合可做容器,排除数组。集合有List,Map,set,其中set一般不用。
  21. //从性能上map更好,若购买同一个商品,只需购买量累加即可,List需要循环遍历然后累加,而Map只需结合key拿value。
  22. //若用List充当购物车,购物车里是购物项(购买的商品,购买数量,小计)以及总金额。在list<>里存product并不合适,只能拿到商品信息,购买量得不到,那就无法求得小计和总计。
  23. //用Map去做,key应为商品id,value若为购买数量,支付成功后更新很多表,如何找到商品库存?求小计单价如何拿?需要根据商品id再查一次。若购物车里存10个商品,买的时候,会先查一次(根据商
  24. // 品id),用来展示商品信息。做支付时,更新表,又要去查。10个商品一共查了20次,效率很低。故value存购买数量,不太合适。value存商品对象,相当于List<Product>。此时Map<Integer,Product>
  25. //和List<Product>效果差不多,但Map效率更高。问题是拿不到购买数量,故value中放商品对象不合适。
  26. //最合适的还是放购物项,两个都可以,用Map效率更高。
  27. //List<CartItem> Map<Integer,CartItem>(可用来判断之前是否买过,不用遍历,可根据id直接拿,id==null,说明之前没买过)
  28. CartService.addProdToCart(product, buyNum);
  29. }

如上分析,购物车是Map集合,里面存放商品id和购物项。故,在bean包新建CartItem类,表示购物项:

  1. @Setter
  2. @Getter
  3. public class CartItem {
  4. private Product product; //商品信息
  5. private Integer buyNum; //购买数量
  6. private BigDecimal money; //每条购物项(每种商品)的小计
  7. public BigDecimal getMoney() { //小计=数量*单价 小数间不能直接运算,且还是BigDecimal类型,要如下做:
  8. money = new BigDecimal(buyNum.toString()).multiply(new BigDecimal(product.getProdPrice().toString()));
  9. return money;
  10. }
  11. public CartItem(Product product, Integer buyNum) {
  12. this.product = product;
  13. this.buyNum = buyNum;
  14. }
  15. @Override
  16. public String toString() {
  17. return "CartItem{" +
  18. "productId=" + product.getId() +
  19. ", productName=" + product.getProdName() +
  20. ", productStore=" + product.getProdStore() +
  21. ", productPrice=" + product.getProdPrice() +
  22. ", buyNum=" + buyNum +
  23. ", money=" + getMoney() +
  24. '}';
  25. }
  26. }

在Service中新建CartService,去写增加商品到购物车的方法:

  1. public class CartService {
  2. private CartService() { //构造私有化
  3. }
  4. //创建购物车
  5. public static Map<Integer, CartItem> cart; //购物车没必要new多次,一个人只有一辆
  6. static {
  7. cart = new HashMap<>(16); //初始化购物车
  8. }
  9. //CartItem对象里有商品对象,购买数量和小计。通过商品对象可拿到商品单价,从而可得小计。故小计money不需要传。
  10. public static void addProdToCart(Product product, Integer buyNum) { //商品添到购物车的静态方法
  11. Integer id = product.getId(); //拿商品id
  12. CartItem item = cart.get(id);
  13. if (item != null) {
  14. //之前买过这个商品
  15. item.setBuyNum(item.getBuyNum() + buyNum);
  16. } else {
  17. //第一次
  18. item = new CartItem(product, buyNum); //CartItem对象
  19. cart.put(id, item); //将商品添加到购物车(商品id和CartItem对象)
  20. }
  21. System.out.println("购买<<" + buyNum + ">>个" + product.getProdName() + "成功");
  22. }
  23. }

回到CartMenu目录,去写4.查询购物车商品信息的功能:

这里直接调CartService.showProdList();   

  1. public static void showProdList() {
  2. if (cart.isEmpty()) {
  3. System.out.println("购物车目前没有商品");
  4. return;
  5. }
  6. //遍历map
  7. cart.forEach((id, item) -> System.out.println(item)); //对应的item即CartItem,要在该类中重写ToString().
  8. }
  9. public static CartItem getProdById(int pid) { //这个在CartMenu类中购买指定商品的方法中用到
  10. return cart.get(pid);
  11. }

购买了指定商品并存在购物车后,就是5.支付。

支付一定是总金额,为购物车小计的累加,故应该在CartService类中增加计算小计累加的方法:

  1. private static BigDecimal totalMoney; //totalMoney必须放到外面声明(不要初始化,要在里面初始化)
  2. public static BigDecimal getTotalMoney() {
  3. totalMoney = new BigDecimal("0"); //初始值给0
  4. cart.forEach((id, item) -> { //这里lamda表示,是匿名内部类,故变量totalMoney必须放到外面声明
  5. totalMoney = totalMoney.add(item.getMoney());
  6. });
  7. return totalMoney;
  8. }

支付方式有两种,现金支付和余额支付(最好用枚举)。考虑支付成功,需要动哪些表--1.订单表(mid表示会员id,游客的mid值为-1;total_money订单总金额;pay_type支付类型), 2. 订单详情表(oid订单id,pid购买商品的id,buy_num购买数量)。先走订单表,再走订单详情表。3.更新商品表信息。4.若选用余额支付,还要更新会员表。 

 但这里只有支付功能,支付需要生成订单(在OrderService里,还没创建),就将以上涉及要动的表都放到订单表里编写。写成一个事务。后面生成订单以及动这些表的一系列动作,只调用OrderService的一个方法,addOrder()即可。

选择余额支付,说明是会员,就需要录用户名和密码(前面没有说会员管理功能,这里新建MemberService,要什么方法创建什么方法),也要考虑余额是否大于订单总金额(余额不足可充值,充值就更新会员表的余额,也可转成现金支付,这里只写了现金支付)。这里将余额支付抽成一个方法.

生成订单的方法中,应该传入什么值?看sql语句,会员id,总金额,支付类型。总金额和支付类型都有。会员id呢?若为游客,则为-1,若为会员,应该在抽出的余额支付方法里的新建MemberService类的方法中找到,即在member对象里。如何拿到member对象?提前在余额支付的入口前声明Member member。(意思很简单,但是代码很巧妙,这里逻辑性有点强

下面写代码:在CartMenu类中:

  1. private Member member;
  2. private void pay() {
  3. OrderService orderService = new OrderServiceImpl();
  4. BigDecimal totalMoney = CartService.getTotalMoney();
  5. System.out.println("一共需要支付:" + totalMoney);
  6. System.out.println("请选择支付方式:");
  7. System.out.println("1.现金支付");
  8. System.out.println("2.余额支付");
  9. int payType = InputUtil.inputInt();
  10. switch (payType) {
  11. case 1:
  12. member = new Member();
  13. member.setId(-1);
  14. break;
  15. case 2:
  16. payType = balancePay(totalMoney);
  17. break;
  18. }
  19. orderService.addOrder(member, totalMoney, payType);
  20. //清空购物车
  21. CartService.cart.clear();
  22. }
  23. private static final MemberService memberService = new MemberServiceImpl();
  24. private int balancePay(BigDecimal totalMoney) {
  25. System.out.println("请录入用户名:");
  26. String name = InputUtil.inputStr();
  27. System.out.println("请录入密码:");
  28. String pass = InputUtil.inputStr();
  29. member = memberService.findMemberByNameAndPass(name, pass);
  30. BigDecimal balance = member.getBalance();
  31. if (balance.compareTo(totalMoney) < 0) {
  32. //余额不足
  33. System.out.println("请使用现金支付");
  34. return 1;
  35. }
  36. return 2;
  37. }

这里需要注意一点(在进行余额比较时,balance和totalMoney都是BigDecimal对象,对象不能直接比较。这里用compareTo(BigDecimal  val),返回值为int。) 如下测试:

  1. public static void main(String[] args) {
  2. System.out.println(new BigDecimal("100").compareTo(new BigDecimal("200")));
  3. }

返回值为-1,代表100比200小。

在service包下创建MemberService类,并增加需要的方法:

  1. public interface MemberService {
  2. Member findMemberByNameAndPass(String name, String pass);
  3. }

在Service.impl包下新建其实现类,并重写该方法:

  1. public class MemberServiceImpl implements MemberService {
  2. private static MemberDao memberDao = new MemberDaoImpl();
  3. @SneakyThrows
  4. @Override
  5. public Member findMemberByNameAndPass(String name, String pass) {
  6. return memberDao.findMemberByNameAndPass(name, pass);
  7. }
  8. }

在dao包下:

  1. public interface MemberDao {
  2. Member findMemberByNameAndPass(String name, String pass) throws Exception;
  3. void updateMember(Member member) throws Exception;
  4. }

在sql包下新建MemberSql类,并增加相关sql(这里将更新会员表的sql也写入):

  1. public interface MemberSql {
  2. String FIND_BY_NAME_PASS = "SELECT * FROM member WHERE name=? and password=?";
  3. String UPDATE_MEMBER = "update member set name=?, password=?, user_image=?, phone=?, balance=?, point=? where id = ?";
  4. }

在dao.impl包下:

  1. public class MemberDaoImpl implements MemberDao {
  2. private static QueryRunner queryRunner = new QueryRunner(DruidUtil.getDataSource());
  3. @Override
  4. public Member findMemberByNameAndPass(String name, String pass) throws Exception {
  5. return queryRunner.query(
  6. MemberSql.FIND_BY_NAME_PASS,
  7. new BeanHandler<>(Member.class, new BasicRowProcessor(new GenerousBeanProcessor())),
  8. name, pass
  9. );
  10. }
  11. }

接下来写创建订单并更新一系列表的操作:

在Service包下创建OrderService类,并增加新增订单的方法:

  1. public interface OrderService {
  2. void addOrder(Member member, BigDecimal totalMoney, int payType);
  3. }

在Service.impl包下创建OrderServiceImpl类,实现该方法,并且更新相关表,用事务写:

  1. public class OrderServiceImpl implements OrderService {
  2. @Override
  3. public void addOrder(Member member, BigDecimal totalMoney, int payType) {
  4. Connection connection = null;
  5. try {
  6. //0. 手动的从池子里面获得一个闲置的可用的连接对象
  7. connection = DruidUtil.getDataSource().getConnection();
  8. //1.关闭事务自动提交
  9. connection.setAutoCommit(false);
  10. OrderDao orderDao = new OrderDaoImpl(connection);
  11. ProductDao productDao = new ProductDaoImpl(connection);
  12. MemberDao memberDao = new MemberDaoImpl(connection);
  13. Integer memberId = member.getId();
  14. //订单表: insert into order (mid,total_money,pay_type) VALUES () 返回订单id
  15. int oid = orderDao.addOrder(memberId, totalMoney, payType);
  16. //订单详情表: insert into order_detail (oid,pid,buy_num) values () 购物项
  17. Set<Map.Entry<Integer, CartItem>> entrySet = CartService.cart.entrySet();
  18. for (Map.Entry<Integer, CartItem> itemEntry : entrySet) {
  19. Integer pid = itemEntry.getKey();
  20. CartItem cartItem = itemEntry.getValue();
  21. Integer buyNum = cartItem.getBuyNum();
  22. orderDao.addOrderAndDetail(oid, pid, buyNum);
  23. //更新商品表:
  24. Product product = cartItem.getProduct();
  25. int newStore = product.getProdStore() - buyNum; //新库存是原库存-购买量
  26. if (newStore == 0) { //新库存为0,被买光
  27. product.setProdStatus(2); //2代表下架,应该放到枚举类中维护
  28. }
  29. product.setProdStore(newStore);
  30. productDao.updateProductById(product);
  31. }
  32. //更新会员表: update
  33. if (memberId != -1) {
  34. member.setBalance(member.getBalance().subtract(totalMoney)); //subtract是减
  35. member.setPoint(member.getPoint()+totalMoney.doubleValue());
  36. memberDao.updateMember(member);
  37. }
  38. //2.提交事务并释放资源
  39. DbUtils.commitAndCloseQuietly(connection);
  40. } catch (Exception e) {
  41. //3.回滚事务并释放资源
  42. e.printStackTrace();
  43. DbUtils.rollbackAndCloseQuietly(connection);
  44. }
  45. }
  46. }

在Dao包下创建OrderDao类:

  1. public interface OrderDao {
  2. int addOrder(Integer memberId, BigDecimal totalMoney, int payType) throws Exception;
  3. void addOrderAndDetail(int oid, int pid, int buyNum) throws Exception;
  4. }

在sql包下创建OrderSql类,并增加sql:

  1. public interface OrderSql {
  2. String ADD_ORDER = "INSERT INTO `order` (mid, total_money, pay_type) VALUES (?,?,?)";
  3. String ADD_ORDER_DETAIL = "INSERT INTO order_detail (oid, pid, buy_num) VALUES (?,?,?)";
  4. }

在Dao.Impl包下创建OrderDaoImpl类:

  1. public class OrderDaoImpl implements OrderDao {
  2. private Connection connection;
  3. public OrderDaoImpl() {
  4. }
  5. public OrderDaoImpl(Connection connection) {
  6. this.connection = connection;
  7. }
  8. @Override
  9. public int addOrder(Integer memberId, BigDecimal totalMoney, int payType) throws Exception {
  10. return new QueryRunner().insert(connection,
  11. OrderSql.ADD_ORDER,
  12. new ScalarHandler<BigInteger>(),
  13. memberId,totalMoney,payType).intValue(); //将BigInteger转成int数据
  14. }
  15. @Override
  16. public void addOrderAndDetail(int oid, int pid, int buyNum) throws Exception {
  17. new QueryRunner().update(connection,OrderSql.ADD_ORDER_DETAIL,oid,pid,buyNum);
  18. }
  19. }

 更新会员表,在上面已写了一部分,现在还需在MemberDaoImpl写其实现方法(注意,一个事务中写,就不能调用QueryRunner的有参构造,从池子里拿连接了。其连接从service中拿):

  1. private Connection connection;
  2. public MemberDaoImpl(Connection connection) {
  3. this.connection = connection;
  4. }
  5. public MemberDaoImpl() { //也要提供无参构造,不然其他地方可能报错
  6. }
  7. @Override
  8. public void updateMember(Member member) throws Exception {
  9. new QueryRunner().update(connection, MemberSql.UPDATE_MEMBER,
  10. member.getName(),
  11. member.getPassword(),
  12. member.getUserImage(),
  13. member.getPhone(),
  14. member.getBalance(),
  15. member.getPoint(),
  16. member.getId()
  17. );
  18. }

对应的ProductDaoImpl类中也应该从servise中拿连接(这里有小问题,看代码):

  1. private Connection connection;
  2. public ProductDaoImpl(Connection connection) {
  3. this.connection = connection;
  4. }
  5. public ProductDaoImpl() {
  6. }
  7. @Override
  8. public int updateProductById(Product product) throws Exception {
  9. //这里有问题,若只是一个单独的更新,只是商品表的更新,怎么处理? 再加一个更新方法,连接从池子拿,代码冗余。 只能if判断,下面会说。
  10. return new QueryRunner().update(connection, ProductSql.UPDATE_PRODUCT_BY_ID,
  11. product.getProdName(),
  12. product.getTypeId(),
  13. product.getProdPrice(),
  14. product.getProdStore(),
  15. product.getProdImage(),
  16. product.getProdStatus(),
  17. product.getProdDesc(),
  18. product.getId()
  19. );
  20. }

以更新会员表为例,在事务里,则从service拿连接,单独更新会员表,则从池子拿连接。在MemberDaoImpl中只能判断连接,尽管这不是最完美的解决方式:

  1. //"update member set name=?, password=?, user_image=?, phone=?, balance=?, point=? where id = ?";
  2. @Override
  3. public void updateMember(Member member) throws Exception {
  4. if(connection==null){
  5. queryRunner.update(MemberSql.UPDATE_MEMBER,
  6. member.getName(),
  7. member.getPassword(),
  8. member.getUserImage(),
  9. member.getPhone(),
  10. member.getBalance(),
  11. member.getPoint(),
  12. member.getId()
  13. );
  14. return;
  15. }
  16. new QueryRunner().update(connection, MemberSql.UPDATE_MEMBER,
  17. member.getName(),
  18. member.getPassword(),
  19. member.getUserImage(),
  20. member.getPhone(),
  21. member.getBalance(),
  22. member.getPoint(),
  23. member.getId()
  24. );
  25. }

至此,收银员部分的购物车模块的支付功能结束。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/877378
推荐阅读
相关标签
  

闽ICP备14008679号