这些代码变更主要包括对Java类、接口以及视图处理逻辑的修改。下面是具体的变更点:
### Admin.java文件变更: 1. 添加了注释部分,指明设计者和日期。 2. 对成员变量添加了注释说明。 3. 增加了构造函数:无参构造方法、拷贝构造方法,并对成员变量进行了初始化。4. 增加了getter和setter方法。 ### AdminDao.java文件变更: 1. 添加了注释部分,指明设计者和日期。 2. 删除了原有的`updateAdminPassword`方法声明。 3. 新增了`getAdminByIdByPass`方法声明,接受管理员ID和密码作为参数,用于根据ID和密码获取管理员信息。 4. 新增了`boolean updateAdminPassword`方法声明,用于更新管理员密码,并返回操作结果。 ### AdminDaoImpl.java文件变更: 1. 添加了注释部分,指明设计者和日期。 2. 删除了原有的`updateAdminPassword`实现。 3. 实现了新的`getAdminByIdByPass`方法,使用管理员ID和密码从数据库检索管理员信息。
This commit is contained in:
parent
3270303404
commit
9f6c2729ca
@ -4,6 +4,7 @@
|
|||||||
<file url="file://$PROJECT_DIR$/src/ElmAdminEntry.java" charset="GBK" />
|
<file url="file://$PROJECT_DIR$/src/ElmAdminEntry.java" charset="GBK" />
|
||||||
<file url="file://$PROJECT_DIR$/src/ElmBusinessEntry.java" charset="GBK" />
|
<file url="file://$PROJECT_DIR$/src/ElmBusinessEntry.java" charset="GBK" />
|
||||||
<file url="file://$PROJECT_DIR$/src/View/AdminView.java" charset="GBK" />
|
<file url="file://$PROJECT_DIR$/src/View/AdminView.java" charset="GBK" />
|
||||||
|
<file url="file://$PROJECT_DIR$/src/View/BusinessView.java" charset="GBK" />
|
||||||
<file url="file://$PROJECT_DIR$/src/View/Display.java" charset="GBK" />
|
<file url="file://$PROJECT_DIR$/src/View/Display.java" charset="GBK" />
|
||||||
<file url="file://$PROJECT_DIR$/src/dao/AdminDaoImpl.java" charset="GBK" />
|
<file url="file://$PROJECT_DIR$/src/dao/AdminDaoImpl.java" charset="GBK" />
|
||||||
<file url="file://$PROJECT_DIR$/src/dao/BusinessDaoImpl.java" charset="GBK" />
|
<file url="file://$PROJECT_DIR$/src/dao/BusinessDaoImpl.java" charset="GBK" />
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
import View.AdminView;
|
import View.AdminView;
|
||||||
import View.Display;
|
import View.Display;
|
||||||
import po.Admin;
|
import po.Admin;
|
||||||
import po.Business;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.Scanner;
|
|
||||||
import java.util.stream.StreamSupport;
|
|
||||||
|
|
||||||
public class ElmAdminEntry {
|
public class ElmAdminEntry {
|
||||||
public static void main(String[] args){
|
public static void main(String[] args){
|
||||||
@ -16,25 +15,20 @@ public class ElmAdminEntry {
|
|||||||
private static final int exitCode = 10;
|
private static final int exitCode = 10;
|
||||||
|
|
||||||
public void work(){
|
public void work(){
|
||||||
|
|
||||||
Scanner sca = new Scanner(System.in);
|
|
||||||
Display dis = new Display('+', '-', 30);
|
Display dis = new Display('+', '-', 30);
|
||||||
AdminView adv = new AdminView();
|
AdminView adv = new AdminView();
|
||||||
|
|
||||||
// 实例化管理员对象, 调用登录方法对其初始化
|
// Admin admin = new Admin();
|
||||||
// Admin admin = new AdminView().login();
|
// admin.setAdminName("jrnitre");
|
||||||
|
// admin.setAdminId(1);
|
||||||
|
// admin.setAdminPassword("1234");
|
||||||
|
|
||||||
Admin admin = new Admin();
|
// 实例化管理员对象, 调用登录方法对其初始化
|
||||||
admin.setAdminName("jrnitre");
|
Admin admin = new AdminView().login();
|
||||||
admin.setAdminId(1);
|
|
||||||
admin.setAdminPassword("1234");
|
|
||||||
|
|
||||||
if (admin != null){
|
if (admin != null){
|
||||||
|
int key;
|
||||||
int key = -1;
|
|
||||||
|
|
||||||
while (true){
|
while (true){
|
||||||
|
|
||||||
dis.titleLine("Admin - " + admin.getAdminName(), true);
|
dis.titleLine("Admin - " + admin.getAdminName(), true);
|
||||||
dis.showItem("[0] 所有商家列表", true);
|
dis.showItem("[0] 所有商家列表", true);
|
||||||
dis.showItem("[1] 搜索商家", true);
|
dis.showItem("[1] 搜索商家", true);
|
||||||
@ -42,7 +36,8 @@ public class ElmAdminEntry {
|
|||||||
dis.showItem("[3] 删除商家", true);
|
dis.showItem("[3] 删除商家", true);
|
||||||
dis.showItem("[4] 查看管理员信息", true);
|
dis.showItem("[4] 查看管理员信息", true);
|
||||||
dis.showItem("[5] 设置管理员密码", true);
|
dis.showItem("[5] 设置管理员密码", true);
|
||||||
dis.showItem("[6] 查看管理员列表(隐藏功能)", true);
|
dis.showItem("[6] 查看管理员列表 (DEBUG)", true);
|
||||||
|
dis.showItem("[7] 查看所有食品列表 (DEBUG)", true);
|
||||||
dis.showItem("[" + exitCode + "] 退出系统", true);
|
dis.showItem("[" + exitCode + "] 退出系统", true);
|
||||||
dis.showLine(true);
|
dis.showLine(true);
|
||||||
|
|
||||||
@ -55,38 +50,35 @@ public class ElmAdminEntry {
|
|||||||
case 0:
|
case 0:
|
||||||
adv.printAllBusinessInfo();
|
adv.printAllBusinessInfo();
|
||||||
break;
|
break;
|
||||||
|
// 搜索商家
|
||||||
case 1:
|
case 1:
|
||||||
adv.searchBusiness();
|
adv.searchBusiness();
|
||||||
break;
|
break;
|
||||||
|
// 新建商家
|
||||||
case 2:
|
case 2:
|
||||||
adv.adminAddBusiness();
|
adv.adminAddBusiness();
|
||||||
break;
|
break;
|
||||||
|
// 删除商家
|
||||||
case 3:
|
case 3:
|
||||||
adv.deleteBusiness();
|
adv.deleteBusiness();
|
||||||
break;
|
break;
|
||||||
|
// 显示管理员信息
|
||||||
case 4:
|
case 4:
|
||||||
dis.titleLine("管理员信息 - " + admin.getAdminName(), true);
|
adv.printAdminInfo(admin);
|
||||||
System.out.println("+ 管理员 ID: " + admin.getAdminId());
|
|
||||||
System.out.println("+ 管理员名: " + admin.getAdminName());
|
|
||||||
System.out.println("+ 管理员密码: " + admin.getAdminPassword());
|
|
||||||
break;
|
break;
|
||||||
|
// 设置管理员密码
|
||||||
case 5:
|
case 5:
|
||||||
dis.titleLine("设置管理员密码", true);
|
adv.updatePassword(admin);
|
||||||
System.out.print("+ 输入当前密码: ");
|
|
||||||
String newPassword = sca.next();
|
|
||||||
if (!(newPassword.equals(admin.getAdminPassword()))){
|
|
||||||
dis.titleLine("ERROR", true);
|
|
||||||
System.out.println("密码不一致!");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
System.out.println("+ 输入新密码: ");
|
|
||||||
newPassword = sca.next();
|
|
||||||
admin.setAdminPassword(newPassword);
|
|
||||||
new AdminView().updatePassword(admin);
|
|
||||||
break;
|
break;
|
||||||
|
// 查看管理员列表
|
||||||
case 6:
|
case 6:
|
||||||
adv.printAllAdminInfo();
|
adv.printAllAdminInfo();
|
||||||
break;
|
break;
|
||||||
|
// 查看所有食品列表
|
||||||
|
case 7:
|
||||||
|
adv.printAdminAllFoodInfo();
|
||||||
|
break;
|
||||||
|
// Exit system
|
||||||
case exitCode:
|
case exitCode:
|
||||||
if (dis.MessageYesOrNo("提示", "是否确定退出系统?")) {
|
if (dis.MessageYesOrNo("提示", "是否确定退出系统?")) {
|
||||||
dis.titleLine("提示", true);
|
dis.titleLine("提示", true);
|
||||||
@ -94,6 +86,7 @@ public class ElmAdminEntry {
|
|||||||
System.exit(0);
|
System.exit(0);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
// :-)
|
||||||
default:
|
default:
|
||||||
dis.titleLine("ERROR", true);
|
dis.titleLine("ERROR", true);
|
||||||
System.out.println("+ 操作数不合法!");
|
System.out.println("+ 操作数不合法!");
|
||||||
|
@ -1,49 +1,124 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
import View.Display;
|
import View.Display;
|
||||||
import View.BusinessView;
|
import View.BusinessView;
|
||||||
|
|
||||||
import po.Business;
|
import po.Business;
|
||||||
|
|
||||||
import java.util.Scanner;
|
|
||||||
|
|
||||||
public class ElmBusinessEntry {
|
public class ElmBusinessEntry {
|
||||||
public static void main (String[] args){
|
public static void main (String[] args){
|
||||||
new ElmBusinessEntry().work();
|
new ElmBusinessEntry().work();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static final int exitCode = 10;
|
||||||
|
|
||||||
public void work(){
|
public void work(){
|
||||||
|
|
||||||
Display dis = new Display('+', '-', 30);
|
Display dis = new Display('+', '-', 30);
|
||||||
Scanner sca = new Scanner(System.in);
|
BusinessView buv = new BusinessView();
|
||||||
|
|
||||||
int mistake = 0;
|
// Login 方法登录系统
|
||||||
int maxMistake = 3;
|
Business business = new BusinessView().login();
|
||||||
int errorCode = 0;
|
|
||||||
int mainExitCode = 0;
|
|
||||||
|
|
||||||
while (mistake < maxMistake && mainExitCode == 0){
|
// Business business = new Business();
|
||||||
dis.titleLine("登录 饿了么 商家 管理系统", true);
|
// business.setBusinessPassword("1234");
|
||||||
if (mistake != 0){
|
// business.setBusinessName("business");
|
||||||
System.out.println("+ 当前错误次数: " + mistake + " 剩余次数: " + (maxMistake - mistake));
|
// business.setBusinessId(1);
|
||||||
}
|
// business.setBusinessAddress("null");
|
||||||
System.out.print("+ 账户: ");
|
// business.setBusinessExplain("null");
|
||||||
String businessName = sca.next();
|
// business.setBusinessStarPrice(5);
|
||||||
System.out.print("+ 密码: ");
|
// business.setBusinessDeliveryPrice(1.5);
|
||||||
String businessPassword = sca.next();
|
|
||||||
|
|
||||||
Business business = new BusinessView().login(businessName, businessPassword);
|
|
||||||
|
|
||||||
if (business != null){
|
if (business != null){
|
||||||
int key = -1;
|
int key;
|
||||||
while (key != 10){
|
while (true){
|
||||||
dis.titleLine("Business - " + business.getBusinessName(), true);
|
dis.titleLine("Business - " + dis.deleteSpaceToString(business.getBusinessName()), true);
|
||||||
|
dis.showItem("[0] 查看商家信息", true);
|
||||||
|
dis.showItem("[1] 修改商家信息", true);
|
||||||
|
dis.showItem("[2] 修改商家密码", true);
|
||||||
|
dis.showItem("[3] 管理食品信息", true);
|
||||||
|
dis.showItem("[" + exitCode + "] 退出系统", true);
|
||||||
|
dis.showLine(true);
|
||||||
|
|
||||||
System.out.print("+ 请输入对应的操作数: ");
|
key = dis.getKeyNumber();
|
||||||
key = sca.nextInt();
|
|
||||||
|
|
||||||
switch (key){
|
switch (key){
|
||||||
case 10:
|
// 查看商家信息
|
||||||
errorCode = 2;
|
case 0:
|
||||||
mainExitCode = 1;
|
buv.printBusinessInfo(business);
|
||||||
|
break;
|
||||||
|
// 修改商家信息
|
||||||
|
case 1:
|
||||||
|
buv.updateBusinessInfo(business);
|
||||||
|
break;
|
||||||
|
// 修改商家密码
|
||||||
|
case 2:
|
||||||
|
buv.updatePassword(business);
|
||||||
|
break;
|
||||||
|
// 管理食品信息
|
||||||
|
case 3:
|
||||||
|
food_work(business);
|
||||||
|
break;
|
||||||
|
case exitCode:
|
||||||
|
if (dis.MessageYesOrNo("提示", "是否确定退出系统?")) {
|
||||||
|
dis.titleLine("提示", true);
|
||||||
|
System.out.println("+ 系统退出");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
dis.titleLine("ERROR", true);
|
||||||
|
System.out.println("+ 操作数不合法!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dis.titleLine("ERROR", true);
|
||||||
|
System.out.println("+ 错误次数过多! 退出系统");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void food_work(Business business){
|
||||||
|
Display dis = new Display('+', '-', 30);
|
||||||
|
BusinessView buv = new BusinessView();
|
||||||
|
|
||||||
|
int key;
|
||||||
|
while (true){
|
||||||
|
dis.titleLine("商家食品管理", true);
|
||||||
|
dis.showItem("[0] 查看食品列表", true);
|
||||||
|
dis.showItem("[1] 添加食品", true);
|
||||||
|
dis.showItem("[2] 修改食品信息", true);
|
||||||
|
dis.showItem("[3] 删除食品", true);
|
||||||
|
dis.showItem("[" + exitCode + "] 返回上级菜单", true);
|
||||||
|
|
||||||
|
key = dis.getKeyNumber();
|
||||||
|
|
||||||
|
switch ( key ){
|
||||||
|
// 查看食品列表
|
||||||
|
case 0:
|
||||||
|
buv.printAllBusinessFoodInfo(business);
|
||||||
|
break;
|
||||||
|
// 添加食品
|
||||||
|
case 1:
|
||||||
|
buv.addBusinessNewFood(business);
|
||||||
|
break;
|
||||||
|
// 修改食品信息
|
||||||
|
case 2:
|
||||||
|
buv.updateBusinessFoodInfo(business);
|
||||||
|
break;
|
||||||
|
// 删除食品
|
||||||
|
case 3:
|
||||||
|
buv.deleteFood(business);
|
||||||
|
break;
|
||||||
|
case exitCode:
|
||||||
|
if (dis.MessageYesOrNo("提示", "确定返回上级菜单?")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
dis.titleLine("ERROR", true);
|
dis.titleLine("ERROR", true);
|
||||||
@ -51,23 +126,5 @@ public class ElmBusinessEntry {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
mistake++;
|
|
||||||
}
|
|
||||||
if (mistake >= maxMistake){
|
|
||||||
errorCode = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (errorCode == 1){
|
|
||||||
dis.titleLine("ERROR", true);
|
|
||||||
System.out.println("+ 错误次数过多,退出系统!");
|
|
||||||
System.exit(0);
|
|
||||||
}
|
|
||||||
if (errorCode == 2){
|
|
||||||
dis.titleLine("提示", true);
|
|
||||||
System.out.println("+ 系统退出");
|
|
||||||
System.exit(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,32 +1,45 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package View;
|
package View;
|
||||||
|
|
||||||
import dao.AdminDaoImpl;
|
import dao.AdminDaoImpl;
|
||||||
import dao.BusinessDaoImpl;
|
import dao.BusinessDaoImpl;
|
||||||
|
|
||||||
import po.Admin;
|
import po.Admin;
|
||||||
import po.Business;
|
import po.Business;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
public class AdminView {
|
public class AdminView {
|
||||||
Display dis = new Display('+', '-', 30);
|
Display dis = new Display('+', '-', 30);
|
||||||
Scanner sca = new Scanner(System.in);
|
|
||||||
|
|
||||||
// 管理员登录
|
/**
|
||||||
|
* 管理员登录方法。
|
||||||
|
* 通过 Scanner 从标准输入获取管理员的用户名或ID和密码,尝试进行登录。
|
||||||
|
* 如果管理员输入的用户名或ID和密码匹配成功,则返回对应的管理员对象;否则,允许管理员尝试多次登录,直到尝试次数用尽。
|
||||||
|
*
|
||||||
|
* @return 成功登录时返回管理员对象,否则返回 null。
|
||||||
|
*/
|
||||||
public Admin login(){
|
public Admin login(){
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
// 当前错误次数
|
// 当前错误次数
|
||||||
int mistake = 0;
|
int mistake = 0;
|
||||||
// 用户可以的最大错误次数
|
// 用户可以的最大错误次数
|
||||||
int maxMistake = 3;
|
int maxMistake = 3;
|
||||||
|
// 登录状态机
|
||||||
String tempName;
|
int loginCode;
|
||||||
String tempPassword;
|
|
||||||
|
|
||||||
Admin admin = null;
|
Admin admin = null;
|
||||||
|
|
||||||
while (mistake < maxMistake){
|
while (mistake < maxMistake){
|
||||||
|
|
||||||
dis.titleLine("登录 [饿了么] 管理员后台", true);
|
dis.titleLine("登录 [饿了么] 管理员后台", true);
|
||||||
|
|
||||||
// 错误次数大于 1 输出文字提醒用户
|
// 错误次数大于 1 输出文字提醒用户
|
||||||
@ -34,16 +47,35 @@ public class AdminView {
|
|||||||
System.out.println("+ 密码输入错误 " + mistake + " 次 剩余可尝试次数 " + (maxMistake - mistake) + " 次");
|
System.out.println("+ 密码输入错误 " + mistake + " 次 剩余可尝试次数 " + (maxMistake - mistake) + " 次");
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO 用户输入合法性判断
|
// 以 String 形式接收用户输入的 Id 或 名称
|
||||||
System.out.print("+ 账户: ");
|
String inputAdminNameOrId;
|
||||||
tempName = sca.next();
|
// 登录 Id 初值 -1
|
||||||
|
int inputAdminId = -1;
|
||||||
|
System.out.print("+ 账户&Id: ");
|
||||||
|
inputAdminNameOrId = sca.nextLine();
|
||||||
|
|
||||||
|
// 判断用户输入的是字符串还是纯数字
|
||||||
|
// 分别调用不同的方法执行登录
|
||||||
|
try{
|
||||||
|
inputAdminId = Integer.parseInt(inputAdminNameOrId);
|
||||||
|
loginCode = 0;
|
||||||
|
} catch (NumberFormatException e){
|
||||||
|
loginCode = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取用户输入的密码
|
||||||
|
String inputAdminPassword;
|
||||||
System.out.print("+ 密码: ");
|
System.out.print("+ 密码: ");
|
||||||
tempPassword = sca.next();
|
inputAdminPassword = sca.nextLine();
|
||||||
|
|
||||||
System.out.println("+ 登录系统中...");
|
System.out.println("+ 登录系统中...");
|
||||||
|
|
||||||
admin = new AdminDaoImpl().getAdminByNameByPass(tempName, tempPassword);
|
if (loginCode == 0){
|
||||||
|
admin = new AdminDaoImpl().getAdminByIdByPass(inputAdminId, inputAdminPassword);
|
||||||
|
}
|
||||||
|
if (loginCode == 1){
|
||||||
|
admin = new AdminDaoImpl().getAdminByNameByPass(inputAdminNameOrId, inputAdminPassword);
|
||||||
|
}
|
||||||
|
|
||||||
if (admin != null){
|
if (admin != null){
|
||||||
return admin;
|
return admin;
|
||||||
@ -54,70 +86,240 @@ public class AdminView {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新管理员密码。
|
||||||
|
* 该方法提供了一个交互式的界面,用于管理员验证当前密码并设置新密码。
|
||||||
|
* 它确保了新密码的正确性和安全性(长度至少为10个字符)。
|
||||||
|
*
|
||||||
|
* @param admin 管理员对象,包含当前管理员信息。
|
||||||
|
*/
|
||||||
public void updatePassword(Admin admin){
|
public void updatePassword(Admin admin){
|
||||||
System.out.println("+ 密码更新中...");
|
// 创建临时管理员对象接收更改密码期间的用户输入
|
||||||
|
Admin tempAdmin = new Admin(admin);
|
||||||
|
dis.titleLine("更改密码", true);
|
||||||
|
|
||||||
new AdminDaoImpl().updateAdminPassword(admin);
|
while (true){
|
||||||
|
// 引导用户输入原来的密码
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
String afterAdminPassword;
|
||||||
|
System.out.print("+ 输入原密码: ");
|
||||||
|
afterAdminPassword = sca.nextLine();
|
||||||
|
|
||||||
|
// 判断新旧密码是否相等
|
||||||
|
if (afterAdminPassword.equals(tempAdmin.getAdminPassword())){
|
||||||
|
System.out.println("+ 密码正确");
|
||||||
|
|
||||||
|
while (true){
|
||||||
|
String newAdminPassword;
|
||||||
|
|
||||||
|
// 两次输入密码确保用户不会误输入
|
||||||
|
while (true){
|
||||||
|
String againNewAdminPassword;
|
||||||
|
System.out.print("+ 输入新密码 (10个字符): ");
|
||||||
|
newAdminPassword = sca.nextLine();
|
||||||
|
System.out.print("+ 再次新密码 (10个字符): ");
|
||||||
|
againNewAdminPassword = sca.nextLine();
|
||||||
|
|
||||||
|
if (newAdminPassword.equals(againNewAdminPassword)){
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
System.out.println("+ 前后密码不一致");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 判断新密码长度, 小于 10
|
||||||
|
if (newAdminPassword.length() <= 10){
|
||||||
|
System.out.println("+ 更新中...");
|
||||||
|
// 将用户的新密码存储至临时对象中
|
||||||
|
tempAdmin.setAdminPassword(newAdminPassword);
|
||||||
|
|
||||||
|
// 调用数据库更新密码
|
||||||
|
if (new AdminDaoImpl().updateAdminPassword(admin)){
|
||||||
|
// 将临时对象中的新密码赋值给用户对象
|
||||||
|
admin.setAdminPassword(tempAdmin.getAdminPassword());
|
||||||
|
System.out.println("+ 密码更新成功!");
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 密码更新失败!");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 密码过长!");
|
||||||
|
}
|
||||||
|
dis.titleLine("按任意键返回主菜单", true);
|
||||||
|
sca.nextLine();
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 密码错误");
|
||||||
|
System.out.print("+ [y] 重试: ");
|
||||||
|
String exitKey = sca.next();
|
||||||
|
if (!Objects.equals(exitKey, "y") && !Objects.equals(exitKey, "Y")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 管理员添加商家功能。
|
||||||
|
* 该方法通过控制台输入商家相关信息,包括商家ID、商家名称、商家密码、商家地址、商家介绍、起送费和配送费。
|
||||||
|
* 对输入的信息进行验证后,将商家信息添加到系统中。
|
||||||
|
*/
|
||||||
public void adminAddBusiness(){
|
public void adminAddBusiness(){
|
||||||
Business business = new Business();
|
Business business = new Business();
|
||||||
Scanner sca = new Scanner(System.in);
|
|
||||||
Display dis = new Display('+', '-', 30);
|
Display dis = new Display('+', '-', 30);
|
||||||
|
|
||||||
int tempBusinessId;
|
|
||||||
String tempBusinessName;
|
|
||||||
String tempBusinessPassword;
|
|
||||||
|
|
||||||
dis.titleLine("新增商家", true);
|
dis.titleLine("新增商家", true);
|
||||||
System.out.print("+ 商家 ID: ");
|
|
||||||
tempBusinessId = sca.nextInt();
|
|
||||||
|
|
||||||
sca.nextLine();
|
// 商家 Id
|
||||||
|
while(true){
|
||||||
|
String inputBusinessId;
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
System.out.print("+ 商家名: ");
|
System.out.print("+ 商家四位 ID: ");
|
||||||
business.setBusinessName(sca.nextLine());
|
inputBusinessId = sca.nextLine();
|
||||||
|
|
||||||
System.out.print("+ 商家密码: ");
|
// 正则表达式判断是否为四位数字
|
||||||
tempBusinessPassword = sca.nextLine();
|
if (Pattern.matches("^\\d{4}$", inputBusinessId)) {
|
||||||
|
int businessId = Integer.parseInt(inputBusinessId);
|
||||||
|
business.setBusinessId(businessId);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
if (!inputBusinessId.matches("\\d+")){
|
||||||
|
System.out.println("+ 输入包含非数字字符!");
|
||||||
|
}
|
||||||
|
System.out.println("+ 商家 ID 位数不正确!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
System.out.print("+ 商家地址: ");
|
// 商家名
|
||||||
business.setBusinessAddress(sca.nextLine());
|
while (true){
|
||||||
|
String inputBusinessName;
|
||||||
|
int maxDataLength = 10;
|
||||||
|
System.out.print("+ 商家名 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
System.out.print("+ 商家介绍: ");
|
inputBusinessName = dis.getStandString(maxDataLength);
|
||||||
business.setBusinessExplain(sca.nextLine());
|
|
||||||
|
|
||||||
|
if (inputBusinessName != null){
|
||||||
|
business.setBusinessName(dis.appendSpaceToString(inputBusinessName, maxDataLength));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 商家名不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 商家密码
|
||||||
|
while (true){
|
||||||
|
String inputBusinessPassword;
|
||||||
|
int maxDataLength = 10;
|
||||||
|
System.out.print("+ 商家密码 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
|
inputBusinessPassword = dis.getStandString(maxDataLength);
|
||||||
|
|
||||||
|
if (inputBusinessPassword != null){
|
||||||
|
business.setBusinessPassword(inputBusinessPassword);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 密码不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 商家地址
|
||||||
|
while (true){
|
||||||
|
String inputBusinessAddress;
|
||||||
|
int maxDataLength = 20;
|
||||||
|
System.out.print("+ 商家地址 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
|
inputBusinessAddress = dis.getStandString(maxDataLength);
|
||||||
|
|
||||||
|
if (inputBusinessAddress != null){
|
||||||
|
business.setBusinessAddress(inputBusinessAddress);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 商家地址不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 商家介绍
|
||||||
|
while (true){
|
||||||
|
String inputBusinessExplain;
|
||||||
|
int maxDataLength = 25;
|
||||||
|
System.out.print("+ 商家介绍 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
|
inputBusinessExplain = dis.getStandString(maxDataLength);
|
||||||
|
|
||||||
|
if (inputBusinessExplain != null){
|
||||||
|
business.setBusinessExplain(inputBusinessExplain);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 商家介绍不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 起送费
|
||||||
|
while (true){
|
||||||
|
double inputBusinessStartPrice;
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
System.out.print("+ 起送费: ");
|
System.out.print("+ 起送费: ");
|
||||||
while (!sca.hasNextDouble()) {
|
if (!sca.hasNextDouble()){
|
||||||
System.out.println("输入错误,请输入一个有效的数字作为起送费!");
|
System.out.println("+ 请输入一个有效数字");
|
||||||
sca.next(); // 清除错误的输入
|
sca.next();
|
||||||
|
} else {
|
||||||
|
inputBusinessStartPrice = sca.nextDouble();
|
||||||
|
if (inputBusinessStartPrice > 0 && inputBusinessStartPrice <= 50){
|
||||||
|
business.setBusinessStarPrice(inputBusinessStartPrice);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 输入数据范围有误 (0 ~ 50)");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
business.setBusinessStarPrice(sca.nextDouble());
|
|
||||||
|
|
||||||
|
// 配送费
|
||||||
|
while (true){
|
||||||
|
double inputBusinessDeliveryPrice;
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
System.out.print("+ 配送费: ");
|
System.out.print("+ 配送费: ");
|
||||||
while (!sca.hasNextDouble()) {
|
if (!sca.hasNextDouble()){
|
||||||
System.out.println("+ 输入错误,请输入一个有效的数字作为配送费!");
|
System.out.println("+ 请输入一个有效数字");
|
||||||
sca.next(); // 清除错误的输入
|
sca.next();
|
||||||
|
} else {
|
||||||
|
inputBusinessDeliveryPrice = sca.nextDouble();
|
||||||
|
if (inputBusinessDeliveryPrice > 0 && inputBusinessDeliveryPrice <= 50){
|
||||||
|
business.setBusinessDeliveryPrice(inputBusinessDeliveryPrice);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 输入数据范围有误 (0 ~ 50)");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
business.setBusinessDeliveryPrice(sca.nextDouble());
|
|
||||||
|
|
||||||
sca.nextLine();
|
|
||||||
|
|
||||||
System.out.println("+ 正在添加商户...");
|
|
||||||
|
|
||||||
business.setBusinessId(tempBusinessId);
|
|
||||||
business.setBusinessPassword(tempBusinessPassword);
|
|
||||||
|
|
||||||
new BusinessDaoImpl().addNewBusiness(business);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int printBusinessInfo(ResultSet rs) {
|
System.out.println("+ 数据输入完毕! 正在添加商户...");
|
||||||
|
|
||||||
|
if (new BusinessDaoImpl().addNewBusiness(business)){
|
||||||
|
System.out.println("+ 数据添加成功!");
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 数据添加失败!");
|
||||||
|
}
|
||||||
|
|
||||||
|
dis.pressEnterToContinue();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印业务信息。
|
||||||
|
* 从ResultSet中提取业务相关信息,并以格式化的方式打印出来。
|
||||||
|
* 每条业务信息包括业务ID、业务名称、密码、业务地址、业务说明、星级价格和配送价格。
|
||||||
|
* 业务ID使用四位数字格式化输出。
|
||||||
|
*
|
||||||
|
* @param rs ResultSet对象,包含业务信息的数据。
|
||||||
|
* @return 打印的业务信息条数。
|
||||||
|
*/
|
||||||
|
public int printInputBusinessInfo(ResultSet rs) {
|
||||||
|
// 计数器 用户记录输出了多少条信息
|
||||||
int i = 0;
|
int i = 0;
|
||||||
try {
|
try {
|
||||||
while (rs.next()){
|
while (rs.next()){
|
||||||
StringBuilder str = new StringBuilder();
|
StringBuilder str = new StringBuilder();
|
||||||
str.append("| ");
|
str.append("| ");
|
||||||
str.append(rs.getInt("businessId"));
|
|
||||||
|
String formattedNumber = String.format("%04d", rs.getInt("businessId"));
|
||||||
|
str.append(formattedNumber);
|
||||||
|
|
||||||
str.append("\t| ");
|
str.append("\t| ");
|
||||||
str.append(rs.getString("businessName"));
|
str.append(rs.getString("businessName"));
|
||||||
str.append("\t| ");
|
str.append("\t| ");
|
||||||
@ -132,7 +334,7 @@ public class AdminView {
|
|||||||
str.append(rs.getDouble("deliveryPrice"));
|
str.append(rs.getDouble("deliveryPrice"));
|
||||||
str.append("\t|");
|
str.append("\t|");
|
||||||
|
|
||||||
System.out.println(str.toString());
|
System.out.println(str);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@ -141,6 +343,13 @@ public class AdminView {
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印管理员信息。
|
||||||
|
* 从ResultSet中提取管理员的ID、名称和密码,并以格式化的形式打印出来。
|
||||||
|
*
|
||||||
|
* @param rs ResultSet对象,包含管理员信息的数据。
|
||||||
|
* @return 打印的管理员数量。
|
||||||
|
*/
|
||||||
public int printAdminInfo(ResultSet rs) {
|
public int printAdminInfo(ResultSet rs) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
try {
|
try {
|
||||||
@ -154,7 +363,8 @@ public class AdminView {
|
|||||||
str.append(rs.getString("adminPassword"));
|
str.append(rs.getString("adminPassword"));
|
||||||
str.append("\t|");
|
str.append("\t|");
|
||||||
|
|
||||||
System.out.println(str.toString());
|
String finalString = str.toString();
|
||||||
|
System.out.println(finalString);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@ -163,54 +373,80 @@ public class AdminView {
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印所有管理员的信息。
|
||||||
|
* 此方法首先打印一个标题行,然后遍历所有管理员信息并打印出来,最后显示管理员总数。
|
||||||
|
* 使用了StringBuilder来构建输出字符串,以及ResultSet来处理从数据库获取的管理员数据。
|
||||||
|
* 如果在获取或打印数据的过程中发生异常,将打印异常堆栈跟踪。
|
||||||
|
*/
|
||||||
public void printAllAdminInfo(){
|
public void printAllAdminInfo(){
|
||||||
dis.titleLine("管理员信息", true);
|
dis.titleLine("管理员信息", true);
|
||||||
|
|
||||||
StringBuilder str = new StringBuilder();
|
|
||||||
|
|
||||||
System.out.println("| 管理员ID\t| 管理员名\t| 管理员密码\t|");
|
System.out.println("| 管理员ID\t| 管理员名\t| 管理员密码\t|");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// 打印数据
|
// 打印数据
|
||||||
ResultSet rs = new AdminDaoImpl().getAllAdmin();
|
ResultSet rs = new AdminDaoImpl().getAllAdmin();
|
||||||
|
|
||||||
this.printAdminInfo(rs);
|
int num;
|
||||||
|
|
||||||
|
num = this.printAdminInfo(rs);
|
||||||
|
|
||||||
|
System.out.println("+ 共计 [" + num + "] 条目");
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 列出所有商家信息
|
/**
|
||||||
public void printAllBusinessInfo(){
|
* 打印管理员信息并要求用户确认。
|
||||||
dis.titleLine("商家信息", true);
|
* 该方法用于以格式化的方式显示管理员的详细信息,包括ID、名称和密码。
|
||||||
|
* 在信息显示后,要求用户进行确认,通过扫描键盘输入来实现。
|
||||||
StringBuilder str = new StringBuilder();
|
*
|
||||||
int businessNumber = new BusinessDaoImpl().getBusinessNumber();
|
* @param admin 管理员对象,包含要打印的信息。
|
||||||
|
*/
|
||||||
if (businessNumber == -1){
|
public void printAdminInfo(Admin admin){
|
||||||
System.out.println("+ 商家数: Error");
|
dis.titleLine("管理员 [" + admin.getAdminName() + "]" + " 信息", true);
|
||||||
} else {
|
System.out.println("+ 管理员 ID: " + admin.getAdminId());
|
||||||
System.out.println("+ 商家数: " + businessNumber);
|
System.out.println("+ 管理员名 : " + admin.getAdminName());
|
||||||
|
System.out.println("+ 管理员密码: " + admin.getAdminPassword());
|
||||||
|
dis.showLine(true);
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
sca.nextLine();
|
||||||
}
|
}
|
||||||
|
|
||||||
dis.titleLine("商家列表", true);
|
/**
|
||||||
System.out.println("| 商家ID\t| 商家名\t| 商家密码\t| 商家地址\t| 商家介绍\t| 起送费\t| 配送费\t|");
|
* 打印所有商家信息。
|
||||||
|
* 此方法用于查询并展示系统中的所有商家信息,包括商家的基本信息。
|
||||||
|
* 使用ResultSet遍历查询结果,并通过printInputBusinessInfo方法逐条打印商家信息。
|
||||||
|
* 最后,打印集合中商家的数量。
|
||||||
|
*/
|
||||||
|
public void printAllBusinessInfo(){
|
||||||
|
int num;
|
||||||
|
|
||||||
|
dis.titleLine("商家信息", true);
|
||||||
|
dis.printInfoTitle();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// 打印数据
|
|
||||||
ResultSet rs = new BusinessDaoImpl().printAllBusiness();
|
ResultSet rs = new BusinessDaoImpl().printAllBusiness();
|
||||||
|
num = this.printInputBusinessInfo(rs);
|
||||||
this.printBusinessInfo(rs);
|
System.out.println("+ 合集商家数目 [" + num + "]");
|
||||||
|
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 搜索商家
|
||||||
|
// TODO 代码逻辑需要调整
|
||||||
|
// TODO 可选择的搜索条目不完善
|
||||||
public void searchBusiness(){
|
public void searchBusiness(){
|
||||||
int key, num;
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
|
int key;
|
||||||
|
// 用于接收执行完毕后返回的数据
|
||||||
|
ResultSet rs;
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
dis.titleLine("搜索商家", true);
|
dis.titleLine("搜索商家", true);
|
||||||
dis.showItem("[0] 按商家名查询", true);
|
dis.showItem("[0] 按商家名查询", true);
|
||||||
dis.showLine(true);
|
dis.showLine(true);
|
||||||
@ -225,7 +461,7 @@ public class AdminView {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
System.out.println("+ 查询中...");
|
System.out.println("+ 查询中...");
|
||||||
ResultSet rs = new AdminDaoImpl().fuzzyQueryExampleForName(businessName);
|
rs = new AdminDaoImpl().fuzzyQueryExampleForName(businessName);
|
||||||
// 判断是否为空
|
// 判断是否为空
|
||||||
if (rs == null){
|
if (rs == null){
|
||||||
dis.titleLine("Error", true);
|
dis.titleLine("Error", true);
|
||||||
@ -233,22 +469,37 @@ public class AdminView {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
num = this.printBusinessInfo(rs);
|
dis.printInfoTitle();
|
||||||
|
int num;
|
||||||
|
num = this.printInputBusinessInfo(rs);
|
||||||
|
|
||||||
System.out.println("+ 共查询到 " + num + "条数据");
|
System.out.println("+ 共查询到 " + num + "条数据");
|
||||||
|
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
default:
|
||||||
|
dis.titleLine("ERROR", true);
|
||||||
|
System.out.println("+ 操作数不合法!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除商家功能的实现。
|
||||||
|
* 通过用户输入的商家ID或名称,从数据库中删除对应的商家信息。
|
||||||
|
* 首先尝试将用户输入解析为整数,如果是整数,则认为是商家ID并进行删除。
|
||||||
|
* 如果解析失败,则认为用户输入的是商家名称,并通过名称进行删除。
|
||||||
|
*/
|
||||||
public void deleteBusiness(){
|
public void deleteBusiness(){
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
dis.titleLine("删除商家", true);
|
dis.titleLine("删除商家", true);
|
||||||
System.out.print("+ 输入需要删除的商家的 Id 或名字: ");
|
System.out.print("+ 输入需要删除的商家的 Id 或名字: ");
|
||||||
String uin = sca.nextLine();
|
String uin = sca.nextLine();
|
||||||
|
|
||||||
|
|
||||||
try{
|
try{
|
||||||
int uinToNumber = Integer.parseInt(uin);
|
int uinToNumber = Integer.parseInt(uin);
|
||||||
System.out.println("+ 查询并删除 Id 为: " + uin + " 的商家...");
|
System.out.println("+ 查询并删除 Id 为: " + uin + " 的商家...");
|
||||||
@ -257,6 +508,51 @@ public class AdminView {
|
|||||||
System.out.println("+ 查询并删除名为: " + uin + " 的商家...");
|
System.out.println("+ 查询并删除名为: " + uin + " 的商家...");
|
||||||
new BusinessDaoImpl().deleteName(uin);
|
new BusinessDaoImpl().deleteName(uin);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印所有食品的信息。
|
||||||
|
* 该方法用于管理员界面,展示数据库中所有食品的详细信息。
|
||||||
|
* 通过查询数据库获取所有食品信息,并逐条打印这些信息。
|
||||||
|
*/
|
||||||
|
public void printAdminAllFoodInfo(){
|
||||||
|
int num = 0;
|
||||||
|
dis.titleLine("所有食品列表", true);
|
||||||
|
|
||||||
|
try {
|
||||||
|
System.out.println("+ 查询中...");
|
||||||
|
ResultSet rs = new BusinessDaoImpl().getAllFoodInfo();
|
||||||
|
// 判断是否为空
|
||||||
|
if (rs == null){
|
||||||
|
dis.titleLine("Error", true);
|
||||||
|
System.out.println("+ 未查询到有关数据!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
while ( rs.next() ){
|
||||||
|
StringBuilder str = new StringBuilder();
|
||||||
|
|
||||||
|
str.append("| ");
|
||||||
|
str.append(rs.getString("foodId"));
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getString("foodName"));
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getString("foodExplain"));
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getDouble("foodPrice"));
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getInt("businessId"));
|
||||||
|
str.append("\t|");
|
||||||
|
|
||||||
|
String finalString = str.toString();
|
||||||
|
System.out.println(finalString);
|
||||||
|
num++;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("+ 共查询到 " + num + " 条数据");
|
||||||
|
|
||||||
|
} catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,615 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package View;
|
package View;
|
||||||
|
|
||||||
import dao.BusinessDaoImpl;
|
import dao.BusinessDaoImpl;
|
||||||
import po.Business;
|
import po.Business;
|
||||||
|
import po.Food;
|
||||||
|
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.Scanner;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
public class BusinessView {
|
public class BusinessView {
|
||||||
|
Display dis = new Display('+', '-', 30);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 商户登录方法。
|
||||||
|
* 通过 Scanner 从标准输入获取商户的用户名或ID和密码,尝试进行登录。
|
||||||
|
* 如果商户输入的用户名或ID和密码匹配成功,则返回对应的商户对象;否则,允许商户尝试多次登录,直到尝试次数用尽。
|
||||||
|
*
|
||||||
|
* @return 成功登录时返回商户对象,否则返回 null。
|
||||||
|
*/
|
||||||
|
public Business login () {
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
|
// 当前错误次数
|
||||||
|
int mistake = 0;
|
||||||
|
// 用户可以的最大错误次数
|
||||||
|
int maxMistake = 3;
|
||||||
|
|
||||||
|
int loginCode;
|
||||||
|
|
||||||
public Business login (String name, String password){
|
|
||||||
Business business = null;
|
Business business = null;
|
||||||
|
|
||||||
business = new BusinessDaoImpl().getBusinessByNameByPass(name, password);
|
while ( mistake < maxMistake ) {
|
||||||
|
|
||||||
|
dis.titleLine("登录 [饿了么] 商家后台", true);
|
||||||
|
|
||||||
|
// 错误次数大于 1 输出文字提醒用户
|
||||||
|
if ( mistake != 0 ) {
|
||||||
|
System.out.println("+ 密码输入错误 " + mistake + " 次 剩余可尝试次数 " + (maxMistake - mistake) + " 次");
|
||||||
|
}
|
||||||
|
|
||||||
|
String inputBusinessNameOrId;
|
||||||
|
int inputBusinessId = - 1;
|
||||||
|
System.out.print("+ 账户&Id: ");
|
||||||
|
inputBusinessNameOrId = sca.nextLine();
|
||||||
|
|
||||||
|
try {
|
||||||
|
inputBusinessId = Integer.parseInt(inputBusinessNameOrId);
|
||||||
|
loginCode = 0;
|
||||||
|
} catch ( NumberFormatException e ) {
|
||||||
|
loginCode = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
String inputBusinessPassword;
|
||||||
|
System.out.print("+ 密码: ");
|
||||||
|
inputBusinessPassword = sca.nextLine();
|
||||||
|
|
||||||
|
System.out.println("+ 登录系统中...");
|
||||||
|
|
||||||
|
if ( loginCode == 0 ) {
|
||||||
|
business = new BusinessDaoImpl().getBusinessByIdByPass(inputBusinessId, inputBusinessPassword);
|
||||||
|
}
|
||||||
|
if ( loginCode == 1 ) {
|
||||||
|
business = new BusinessDaoImpl().getBusinessByNameByPass(inputBusinessNameOrId, inputBusinessPassword);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( business != null ) {
|
||||||
return business;
|
return business;
|
||||||
|
} else {
|
||||||
|
mistake++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印商家信息。
|
||||||
|
* 该方法详细打印了商家的各种信息,包括ID、名称、密码、介绍、地址、起送费和配送费。
|
||||||
|
* 旨在为商家管理提供可视化的信息展示,方便用户查看和管理商家详情。
|
||||||
|
*
|
||||||
|
* @param business 商家对象,包含需要打印的所有商家信息。
|
||||||
|
*/
|
||||||
|
public void printBusinessInfo (Business business) {
|
||||||
|
String businessName = dis.deleteSpaceToString(business.getBusinessName());
|
||||||
|
String businessPassword = dis.deleteSpaceToString(business.getBusinessPassword());
|
||||||
|
String businessExplain = dis.deleteSpaceToString(business.getBusinessExplain());
|
||||||
|
String businessAddress = dis.deleteSpaceToString(business.getBusinessAddress());
|
||||||
|
|
||||||
|
dis.titleLine("商家 [" + businessName + "]" + " 信息", true);
|
||||||
|
|
||||||
|
String formattedNumber = String.format("%04d", business.getBusinessId());
|
||||||
|
System.out.println("+ 商家 ID: " + formattedNumber);
|
||||||
|
|
||||||
|
System.out.println("+ 商家名 :" + businessName);
|
||||||
|
System.out.println("+ 商家密码:" + businessPassword);
|
||||||
|
System.out.println("+ 商家介绍:" + businessExplain);
|
||||||
|
System.out.println("+ 商家地址:" + businessAddress);
|
||||||
|
System.out.println("+ 起送费: " + business.getBusinessStarPrice());
|
||||||
|
System.out.println("+ 配送费: " + business.getBusinessDeliveryPrice());
|
||||||
|
|
||||||
|
dis.showLine(true);
|
||||||
|
dis.pressEnterToContinue();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印食品信息列表。
|
||||||
|
* 该方法从 ResultSet 对象中获取食品信息,并逐行打印出来。
|
||||||
|
* 旨在提供可视化的展示食品信息列表,方便用户查看和管理食品信息。
|
||||||
|
*
|
||||||
|
* @param rs ResultSet 对象,包含需要打印的所有食品信息。
|
||||||
|
* @return 打印食品信息列表的行数。
|
||||||
|
*/
|
||||||
|
public int printFoodInfoList (ResultSet rs) {
|
||||||
|
int num = 0;
|
||||||
|
try {
|
||||||
|
while ( rs.next() ) {
|
||||||
|
StringBuilder str = new StringBuilder();
|
||||||
|
|
||||||
|
str.append("| ");
|
||||||
|
String formattedNumber = String.format("%04d", rs.getInt("foodId"));
|
||||||
|
str.append(formattedNumber);
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getString("foodName"));
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getString("foodExplain"));
|
||||||
|
str.append("\t| ");
|
||||||
|
str.append(rs.getDouble("foodPrice"));
|
||||||
|
str.append("\t|");
|
||||||
|
|
||||||
|
String finalStr = str.toString();
|
||||||
|
System.out.println(finalStr);
|
||||||
|
num++;
|
||||||
|
}
|
||||||
|
return num;
|
||||||
|
} catch ( Exception e ) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return num;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印食品信息列表的标题。
|
||||||
|
* 该方法打印了食品信息列表的标题,包括ID、食品名、食品介绍、价格等字段。
|
||||||
|
* 旨在提供可视化的展示食品信息列表的标题,方便用户查看和管理食品信息。
|
||||||
|
*/
|
||||||
|
public void printFoodInfoListTitle () {
|
||||||
|
System.out.println("| ID\t| 食品名\t\t\t| 食品介绍\t\t\t\t\t| 价格\t|");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印所有商家食品信息。
|
||||||
|
* 该方法从 ResultSet 对象中获取商家食品信息,并逐行打印出来。
|
||||||
|
* 旨在提供可视化的展示所有商家食品信息,方便用户查看和管理食品信息。
|
||||||
|
*
|
||||||
|
* @param business 商家对象,包含需要打印的所有商家信息。
|
||||||
|
*/
|
||||||
|
public void printAllBusinessFoodInfo (Business business) {
|
||||||
|
dis.titleLine("商家 [" + dis.deleteSpaceToString(business.getBusinessName()) + "] 的商品", true);
|
||||||
|
try {
|
||||||
|
System.out.println("+ 查询中...");
|
||||||
|
ResultSet rs = new BusinessDaoImpl().getBusinessFoodInfo(business);
|
||||||
|
// 判断是否为空
|
||||||
|
if ( rs == null ) {
|
||||||
|
dis.titleLine("Error", true);
|
||||||
|
System.out.println("+ 未查询到有关数据!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.printFoodInfoListTitle();
|
||||||
|
int num = this.printFoodInfoList(rs);
|
||||||
|
|
||||||
|
System.out.println("+ 共查询到 " + num + " 条数据");
|
||||||
|
} catch ( Exception e ) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
dis.showLine(true);
|
||||||
|
dis.pressEnterToContinue();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新商家信息。
|
||||||
|
* 该方法允许用户更新商家信息,包括商家名、商家介绍、商家地址、起送费和配送费等字段。
|
||||||
|
* 旨在提供可视化的更新商家信息,方便用户管理商家信息。
|
||||||
|
*
|
||||||
|
* @param business 商家对象,包含需要更新的商家信息。
|
||||||
|
*/
|
||||||
|
public void updateBusinessInfo (Business business) {
|
||||||
|
Business newBusiness = new Business(business);
|
||||||
|
int key;
|
||||||
|
boolean exitStatus = false;
|
||||||
|
while ( true ) {
|
||||||
|
dis.titleLine("更改商家信息", true);
|
||||||
|
System.out.println("[0] 更改商家名");
|
||||||
|
System.out.println("[1] 更改商家介绍");
|
||||||
|
System.out.println("[2] 更改商家地址");
|
||||||
|
System.out.println("[3] 更改商家起送费");
|
||||||
|
System.out.println("[4] 更改商家配送费");
|
||||||
|
System.out.println("[5] 退出更改");
|
||||||
|
dis.showLine(true);
|
||||||
|
|
||||||
|
key = dis.getKeyNumber();
|
||||||
|
|
||||||
|
switch ( key ) {
|
||||||
|
case 0:
|
||||||
|
while ( true ) {
|
||||||
|
String newBusinessName;
|
||||||
|
int maxDataLength = 10;
|
||||||
|
dis.titleLine("更改商家名", true);
|
||||||
|
System.out.print("+ 输入新商家名 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
|
newBusinessName = dis.getStandString(maxDataLength);
|
||||||
|
|
||||||
|
if (newBusinessName != null){
|
||||||
|
newBusiness.setBusinessName(newBusinessName);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 商家名称不合法");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
return;
|
||||||
|
default:
|
||||||
|
dis.titleLine("ERROR", true);
|
||||||
|
System.out.println("+ 操作数不合法!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("+ 数据输入完毕, 是否需要选择其它更改的项目");
|
||||||
|
System.out.println("+ [y] - 确认更改更新商家数据");
|
||||||
|
System.out.println("+ [n] - 继续输入需要更改的数据");
|
||||||
|
System.out.println("+ [e] - 退出, 放弃需要更改的数据");
|
||||||
|
System.out.print("+ 请输入需要的操作: ");
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
String str_key = sca.nextLine();
|
||||||
|
if ( str_key.equals("y") || str_key.equals("Y") ) {
|
||||||
|
System.out.println("+ 更新数据中...");
|
||||||
|
if ( new BusinessDaoImpl().updateBusinessInfo(newBusiness) ) {
|
||||||
|
System.out.println("+ 更新完毕...");
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 更新失败...");
|
||||||
|
}
|
||||||
|
exitStatus = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if ( str_key.equals("n") || str_key.equals("N") ) { break; }
|
||||||
|
if ( str_key.equals("e") || str_key.equals("E") ) {
|
||||||
|
System.out.println("+ 退出更改");
|
||||||
|
exitStatus = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 输入不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( exitStatus ) { break; }
|
||||||
|
}
|
||||||
|
|
||||||
|
dis.showLine(true);
|
||||||
|
dis.pressEnterToContinue();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新商家密码。
|
||||||
|
* 该方法提供了一个交互式的界面,用于商家验证当前密码并设置新密码。
|
||||||
|
* 它确保了新密码的正确性和安全性(长度至少为10个字符)。
|
||||||
|
*
|
||||||
|
* @param business 管理员对象,包含当前管理员信息。
|
||||||
|
*/
|
||||||
|
public void updatePassword (Business business) {
|
||||||
|
// 创建临时商户对象接收更改密码期间的用户输入
|
||||||
|
Business tempBusiness = new Business(business);
|
||||||
|
dis.titleLine("更改密码", true);
|
||||||
|
|
||||||
|
while (true){
|
||||||
|
// 引导用户输入原来的密码
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
String afterBusinessPassword;
|
||||||
|
System.out.print("+ 输入原密码: ");
|
||||||
|
afterBusinessPassword = sca.nextLine();
|
||||||
|
|
||||||
|
// 判断新旧密码是否相等
|
||||||
|
if (afterBusinessPassword.equals(tempBusiness.getBusinessPassword())){
|
||||||
|
System.out.println("+ 密码正确");
|
||||||
|
|
||||||
|
while (true){
|
||||||
|
String newBusinessPassword;
|
||||||
|
|
||||||
|
// 两次输入密码确保用户不会误输入
|
||||||
|
while (true){
|
||||||
|
String againNewBusinessPassword;
|
||||||
|
System.out.print("+ 输入新密码 (10个字符): ");
|
||||||
|
newBusinessPassword = sca.nextLine();
|
||||||
|
System.out.print("+ 再次新密码 (10个字符): ");
|
||||||
|
againNewBusinessPassword = sca.nextLine();
|
||||||
|
|
||||||
|
if (newBusinessPassword.equals(againNewBusinessPassword)){
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("+ 前后密码不一致");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 判断新密码长度, 小于 10
|
||||||
|
if (newBusinessPassword.length() <= 10){
|
||||||
|
System.out.println("+ 更新中...");
|
||||||
|
// 将用户的新密码存储至临时对象中
|
||||||
|
tempBusiness.setBusinessPassword(newBusinessPassword);
|
||||||
|
|
||||||
|
// 调用数据库更新密码
|
||||||
|
if (new BusinessDaoImpl().updateBusinessPassword(tempBusiness)){
|
||||||
|
// 将临时对象中的新密码赋值给用户对象
|
||||||
|
business.setBusinessPassword(tempBusiness.getBusinessPassword());
|
||||||
|
System.out.println("+ 密码更新成功!");
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 密码更新失败!");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 密码过长!");
|
||||||
|
}
|
||||||
|
dis.titleLine("按任意键返回主菜单", true);
|
||||||
|
sca.nextLine();
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 密码错误");
|
||||||
|
System.out.print("+ [y] 重试: ");
|
||||||
|
String exitKey = sca.next();
|
||||||
|
if (!Objects.equals(exitKey, "y") && !Objects.equals(exitKey, "Y")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加新的食品。
|
||||||
|
* 该方法提供了一个交互式的界面,用于添加新的食品。
|
||||||
|
* 它确保了食品名称的正确性和安全性(长度至少为10个字符)。
|
||||||
|
*
|
||||||
|
* @param business 管理员对象,包含当前管理员信息。
|
||||||
|
*/
|
||||||
|
public void addBusinessNewFood (Business business) {
|
||||||
|
Food food = new Food();
|
||||||
|
Display dis = new Display('+', '-', 50);
|
||||||
|
dis.titleLine("增加商家食品", true);
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
|
String foodId;
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
System.out.print("+ 输入食品编号 (10个字符): ");
|
||||||
|
|
||||||
|
foodId = sca.nextLine();
|
||||||
|
|
||||||
|
if ( Pattern.matches("^\\d{4}$", foodId) ) {
|
||||||
|
int foodIdForInt = Integer.parseInt(foodId);
|
||||||
|
food.setFoodId(foodIdForInt);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
if ( ! foodId.matches("\\d+") ) {
|
||||||
|
System.out.println("+ 输入包含非数字字符!");
|
||||||
|
} else {
|
||||||
|
System.out.println("+ ID 位数不正确!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
|
String foodName;
|
||||||
|
int max_length = 10;
|
||||||
|
System.out.print("+ 输入食品名 (" + max_length + "个字符): ");
|
||||||
|
|
||||||
|
foodName = dis.getStandString(max_length);
|
||||||
|
|
||||||
|
if (foodName != null){
|
||||||
|
food.setFoodName(foodName);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 食品名不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
|
String foodExplain;
|
||||||
|
int max_length = 25;
|
||||||
|
System.out.print("+ 输入食品介绍 (" + max_length + "个字符): ");
|
||||||
|
|
||||||
|
foodExplain = dis.getStandString(max_length);
|
||||||
|
|
||||||
|
if (foodExplain != null){
|
||||||
|
food.setFoodExplain(foodExplain);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 食品介绍不合法!");
|
||||||
|
}
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
|
double foodPrice;
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
System.out.print("+ 输入食品价格: ");
|
||||||
|
|
||||||
|
if ( ! sca.hasNextDouble() ) {
|
||||||
|
System.out.println("+ 输入不合法");
|
||||||
|
sca.next();
|
||||||
|
} else {
|
||||||
|
foodPrice = sca.nextDouble();
|
||||||
|
if ( foodPrice > 0 && foodPrice <= 9999 ) {
|
||||||
|
food.setFoodPrice(foodPrice);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 数据范围不符 (0 ~ 9999)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 同步 ID
|
||||||
|
food.setBusinessId(business.getBusinessId());
|
||||||
|
|
||||||
|
while ( true ) {
|
||||||
|
dis.showLine(true);
|
||||||
|
System.out.println("+ [y] 确认添加食品");
|
||||||
|
System.out.println("+ [n] 取消添加食品 ");
|
||||||
|
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
String exitKey = sca.next();
|
||||||
|
|
||||||
|
if ( exitKey.equals("y") || exitKey.equals("Y") ) {
|
||||||
|
if ( new BusinessDaoImpl().addNewFood(food) ) {
|
||||||
|
System.out.println("+ 添加成功!");
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 添加失败!");
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
} else if ( exitKey.equals("n") || exitKey.equals("N") ) {
|
||||||
|
System.out.println("+ 退出添加");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新食品信息。
|
||||||
|
* 该方法提供了一种交互式的界面,用于更新食品信息。
|
||||||
|
* 它确保了食品名称的正确性和安全性(长度至少为10个字符)。
|
||||||
|
*
|
||||||
|
* @param business 管理员对象,包含当前管理员信息。
|
||||||
|
*/
|
||||||
|
public void updateBusinessFoodInfo (Business business) {
|
||||||
|
Display dis = new Display('+', '-', 30);
|
||||||
|
Food updateFood;
|
||||||
|
|
||||||
|
dis.titleLine("修改食品信息", true);
|
||||||
|
System.out.println("+ 用户 [" + business.getBusinessName() + "] 的食品有如下表");
|
||||||
|
|
||||||
|
ResultSet rs = new BusinessDaoImpl().getBusinessFoodInfo(business);
|
||||||
|
this.printFoodInfoListTitle();
|
||||||
|
this.printFoodInfoList(rs);
|
||||||
|
dis.showLine(true);
|
||||||
|
|
||||||
|
int updateFoodId;
|
||||||
|
while ( true ){
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
System.out.print("+ 输入需要修改的食品项目 ID: ");
|
||||||
|
|
||||||
|
while ( ! sca.hasNextInt() ) {
|
||||||
|
System.out.println("+ 仅可输入整数 ID");
|
||||||
|
sca.next();
|
||||||
|
System.out.print("+ 输入需要修改的食品项目 ID: ");
|
||||||
|
}
|
||||||
|
updateFoodId = sca.nextInt();
|
||||||
|
updateFood = new BusinessDaoImpl().getFoodById(updateFoodId, business.getBusinessId());
|
||||||
|
|
||||||
|
if ( updateFood != null ){
|
||||||
|
System.out.println("+ 检索成功!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 未能查询到指定的商品");
|
||||||
|
}
|
||||||
|
|
||||||
|
int key;
|
||||||
|
while ( true ) {
|
||||||
|
dis.titleLine("选择需要修改的项目", true);
|
||||||
|
dis.showItem("[0] 商品名", true);
|
||||||
|
dis.showItem("[1] 商品介绍", true);
|
||||||
|
dis.showItem("[2] 商品价格", true);
|
||||||
|
dis.showItem("[3] 更新食品信息", true);
|
||||||
|
dis.showItem("[4] 返回上级", true);
|
||||||
|
dis.showLine(true);
|
||||||
|
|
||||||
|
key = dis.getKeyNumber();
|
||||||
|
|
||||||
|
switch ( key ) {
|
||||||
|
case 0:
|
||||||
|
while ( true ) {
|
||||||
|
String foodName;
|
||||||
|
int maxDataLength = 10;
|
||||||
|
System.out.print("+ 输入食品名 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
|
foodName = dis.getStandString(maxDataLength);
|
||||||
|
|
||||||
|
if (foodName != null){
|
||||||
|
updateFood.setFoodName(foodName);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 食品名不合法");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
while ( true ) {
|
||||||
|
String foodExplain;
|
||||||
|
int maxDataLength = 10;
|
||||||
|
System.out.print("+ 输入食品介绍 (" + maxDataLength + "个字符): ");
|
||||||
|
|
||||||
|
foodExplain = dis.getStandString(maxDataLength);
|
||||||
|
|
||||||
|
if (foodExplain != null){
|
||||||
|
updateFood.setFoodExplain(foodExplain);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 食品介绍不合法");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
while ( true ) {
|
||||||
|
double foodPrice;
|
||||||
|
Scanner case2_sca = new Scanner(System.in);
|
||||||
|
System.out.print("+ 输入食品价格: ");
|
||||||
|
|
||||||
|
if ( ! case2_sca.hasNextDouble() ) {
|
||||||
|
System.out.println("+ 输入错误,请输入一个有效的数字作为食品价格!");
|
||||||
|
case2_sca.next();
|
||||||
|
} else {
|
||||||
|
foodPrice = case2_sca.nextDouble();
|
||||||
|
if ( foodPrice > 0 && foodPrice <= 9999 ) {
|
||||||
|
updateFood.setFoodPrice(foodPrice);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
System.out.println("+ 数据范围有误! 数据需要 (0 ~ 9999)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 3:
|
||||||
|
while (true){
|
||||||
|
dis.titleLine("确认更新食品信息", true);
|
||||||
|
System.out.println("+ [y] 确认更新食品信息");
|
||||||
|
System.out.print("+ [n] 取消更新食品信息: ");
|
||||||
|
|
||||||
|
Scanner case3_sca = new Scanner(System.in);
|
||||||
|
String case3_Key = case3_sca.next();
|
||||||
|
|
||||||
|
if (case3_Key.equals("y") || case3_Key.equals("Y")) {
|
||||||
|
updateFood.setFoodId(updateFoodId);
|
||||||
|
updateFood.setBusinessId(business.getBusinessId());
|
||||||
|
if (new BusinessDaoImpl().updateFoodInfo(updateFood, business)){
|
||||||
|
System.out.println("+ 更新成功!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
System.out.println("+ 更新失败");
|
||||||
|
} else if (case3_Key.equals("n") || case3_Key.equals("N")) { break; }
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
if (dis.MessageYesOrNo("提示", "确定返回上级菜单?")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
dis.titleLine("ERROR", true);
|
||||||
|
System.out.println("+ 操作数不合法!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除食品信息。
|
||||||
|
* 通过输入食品的ID或名称,尝试删除相应的食品记录。
|
||||||
|
* 首先尝试将输入解析为ID,如果失败,则视为食品名称。
|
||||||
|
*
|
||||||
|
* @param business 业务对象,用于执行删除操作。
|
||||||
|
*/
|
||||||
|
public void deleteFood(Business business){
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
|
dis.titleLine("删除食品", true);
|
||||||
|
System.out.print("+ 输入需要删除的食品的 ID 或名字: ");
|
||||||
|
String uin = sca.nextLine();
|
||||||
|
|
||||||
|
try{
|
||||||
|
int uinToNumber = Integer.parseInt(uin);
|
||||||
|
System.out.println("+ 查询并删除 ID 为: " + uin + " 的食品...");
|
||||||
|
|
||||||
|
if (new BusinessDaoImpl().deleteFoodId(uinToNumber, business)){
|
||||||
|
System.out.println("+ ID 删除成功");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("+ ID 删除失败");
|
||||||
|
} catch (NumberFormatException e){
|
||||||
|
System.out.println("+ 查询并删除名为: " + uin + " 的食品...");
|
||||||
|
|
||||||
|
if (new BusinessDaoImpl().deleteFoodName(dis.appendSpaceToString(uin, 10), business)){
|
||||||
|
System.out.println("+ NAME 删除成功");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("+ NAME 删除失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,76 +1,92 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package View;
|
package View;
|
||||||
|
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
public class Display {
|
public class Display {
|
||||||
|
|
||||||
private char displayNode;
|
// 成员变量
|
||||||
private char displayLine;
|
private char displayNode; // 角 字符
|
||||||
|
private char displayLine; // 分割 字符
|
||||||
private Integer displayWidth;
|
private Integer displayWidth; // 显示宽度
|
||||||
|
|
||||||
Scanner sca = new Scanner(System.in);
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
|
// 构造函数
|
||||||
public Display (char node, char line, Integer width){
|
public Display (char node, char line, Integer width){
|
||||||
displayNode = node;
|
displayNode = node;
|
||||||
displayLine = line;
|
displayLine = line;
|
||||||
displayWidth = width;
|
displayWidth = width;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setWidth(Integer width){
|
/**
|
||||||
displayWidth = width;
|
* 在控制台上以标题形式输出给定的字符串。
|
||||||
}
|
* 根据控制台宽度,自动调整标题的左右空白宽度,使其居中显示。
|
||||||
|
*
|
||||||
|
* @param title 要输出的标题字符串。
|
||||||
|
* @param newLine 是否在输出后换行。如果为true,则在输出标题后换行;如果为false,则不换行。
|
||||||
|
*/
|
||||||
public void titleLine (String title, boolean newLine){
|
public void titleLine (String title, boolean newLine){
|
||||||
StringBuilder str = new StringBuilder();
|
StringBuilder str = new StringBuilder();
|
||||||
|
|
||||||
Integer space = (displayWidth - title.length() - 2) / 2;
|
int space = (displayWidth - title.length() - 2) / 2;
|
||||||
|
|
||||||
str.append(displayNode);
|
str.append(displayNode);
|
||||||
for (int i = 0; i < space; i++){
|
str.append(String.valueOf(displayLine).repeat(Math.max(0, space)));
|
||||||
str.append(displayLine);
|
|
||||||
}
|
|
||||||
str.append(title);
|
str.append(title);
|
||||||
for (int i = 0; i < space; i++){
|
str.append(String.valueOf(displayLine).repeat(Math.max(0, space)));
|
||||||
str.append(displayLine);
|
|
||||||
}
|
|
||||||
str.append(displayNode);
|
str.append(displayNode);
|
||||||
|
|
||||||
System.out.print(str.toString());
|
String finalStr = str.toString();
|
||||||
if (newLine){
|
System.out.print(finalStr);
|
||||||
System.out.println();
|
if (newLine){ System.out.println(); }
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在控制台输出一个项目,并自动调整项目左右空白宽度,使其居中显示。
|
||||||
|
*
|
||||||
|
* @param item 要输出的项目字符串。
|
||||||
|
* @param newLine 是否在输出后换行。如果为true,则在输出项目后换行;如果为false,则不换行。
|
||||||
|
*/
|
||||||
public void showItem(String item, boolean newLine){
|
public void showItem(String item, boolean newLine){
|
||||||
StringBuilder str = new StringBuilder();
|
StringBuilder str = new StringBuilder();
|
||||||
|
|
||||||
str.append(displayNode).append(" ");
|
str.append(displayNode).append(" ");
|
||||||
str.append(item);
|
str.append(item);
|
||||||
|
|
||||||
Integer space = displayWidth - 1 - ("+ ".length() + item.length());
|
String finalStr = str.toString();
|
||||||
|
System.out.print(finalStr);
|
||||||
System.out.print(str.toString());
|
if (newLine){ System.out.println(); }
|
||||||
if (newLine){
|
|
||||||
System.out.println();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在控制台输出一条分割线。
|
||||||
|
*
|
||||||
|
* @param newLine 是否在输出后换行。如果为true,则在输出分割线后换行;如果为false,则不换行。
|
||||||
|
*/
|
||||||
public void showLine(boolean newLine){
|
public void showLine(boolean newLine){
|
||||||
StringBuilder str = new StringBuilder();
|
StringBuilder str = new StringBuilder();
|
||||||
|
|
||||||
str.append(displayNode);
|
str.append(displayNode);
|
||||||
for (int i = 0; i < displayWidth - 2; i++){
|
str.append(String.valueOf(displayLine).repeat(Math.max(0, displayWidth - 2)));
|
||||||
str.append(displayLine);
|
|
||||||
}
|
|
||||||
str.append(displayNode);
|
str.append(displayNode);
|
||||||
|
|
||||||
System.out.print(str.toString());
|
String finalStr = str.toString();
|
||||||
if (newLine){
|
System.out.print(finalStr);
|
||||||
System.out.println();
|
if (newLine){ System.out.println(); }
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在控制台输出一条消息,并询问用户是否确认或取消。
|
||||||
|
*
|
||||||
|
* @param title 消息的标题。
|
||||||
|
* @param data 消息的内容。
|
||||||
|
* @return 如果用户确认,则返回true;如果用户取消,则返回false。
|
||||||
|
*/
|
||||||
public boolean MessageYesOrNo(String title, String data){
|
public boolean MessageYesOrNo(String title, String data){
|
||||||
this.titleLine(title, true);
|
this.titleLine(title, true);
|
||||||
System.out.println("+ " + data);
|
System.out.println("+ " + data);
|
||||||
@ -78,12 +94,15 @@ public class Display {
|
|||||||
|
|
||||||
String key = sca.next();
|
String key = sca.next();
|
||||||
|
|
||||||
if (key.equals("y") || key.equals("Y")){
|
return key.equals("y") || key.equals("Y");
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 从用户输入中获取一个整数。
|
||||||
|
* 该方法不断提示用户输入一个整数,直到用户输入正确的整数为止。
|
||||||
|
*
|
||||||
|
* @return 用户输入的整数值。
|
||||||
|
*/
|
||||||
public int getKeyNumber(){
|
public int getKeyNumber(){
|
||||||
int userInput;
|
int userInput;
|
||||||
|
|
||||||
@ -96,8 +115,98 @@ public class Display {
|
|||||||
}
|
}
|
||||||
|
|
||||||
userInput = sca.nextInt();
|
userInput = sca.nextInt();
|
||||||
|
|
||||||
return userInput;
|
return userInput;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在字符串后面添加空格,直到字符串的总长度达到指定的最大长度。
|
||||||
|
* 如果原始字符串的长度已经等于或超过最大长度,则原样返回该字符串。
|
||||||
|
*
|
||||||
|
* @param data 原始字符串
|
||||||
|
* @param max_length 指定的最大长度
|
||||||
|
* @return 添加空格后的字符串
|
||||||
|
*/
|
||||||
|
public String appendSpaceToString(String data, int max_length){
|
||||||
|
StringBuilder str = new StringBuilder();
|
||||||
|
int dataLength = data.length();
|
||||||
|
|
||||||
|
if (dataLength < max_length){
|
||||||
|
str.append(data);
|
||||||
|
|
||||||
|
int space = max_length - dataLength;
|
||||||
|
|
||||||
|
str.append(" ".repeat(space));
|
||||||
|
|
||||||
|
return str.toString();
|
||||||
|
} else {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除字符串末尾的空格。
|
||||||
|
* 如果字符串为空或空字符串,则返回原字符串。
|
||||||
|
*
|
||||||
|
* @param data 原始字符串
|
||||||
|
* @return 删除末尾空格后的字符串
|
||||||
|
*/
|
||||||
|
public String deleteSpaceToString(String data){
|
||||||
|
// 判断是否为空
|
||||||
|
if (data == null || data.isEmpty()){
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
int length = data.length();
|
||||||
|
|
||||||
|
while (length > 0 && data.charAt(length - 1) == ' '){
|
||||||
|
length--;
|
||||||
|
}
|
||||||
|
|
||||||
|
return data.substring(0, length);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印信息标题。
|
||||||
|
* 该方法打印一个带有标题的表格,用于显示商家信息。
|
||||||
|
*/
|
||||||
|
public void printInfoTitle(){
|
||||||
|
System.out.println("| 商家ID\t| 商家名\t\t\t| 商家密码\t\t| 商家地址\t\t\t\t| 商家介绍\t\t\t\t\t| 起送费\t| 配送费\t|");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取标准字符串。
|
||||||
|
* 该方法从用户输入中获取一个字符串,并删除末尾的空格。
|
||||||
|
* 如果输入的字符串长度超过指定的最大长度,则返回null。
|
||||||
|
*
|
||||||
|
* @param max_length 指定的最大长度
|
||||||
|
* @return 标准字符串,如果输入的字符串长度超过指定的最大长度,则返回null
|
||||||
|
*/
|
||||||
|
public String getStandString(int max_length){
|
||||||
|
StringBuilder str = new StringBuilder();
|
||||||
|
Scanner sca = new Scanner(System.in);
|
||||||
|
|
||||||
|
String input = sca.nextLine();
|
||||||
|
int inputLength = input.length();
|
||||||
|
|
||||||
|
// 追加空格
|
||||||
|
if (inputLength < max_length){
|
||||||
|
str.append(input);
|
||||||
|
int space = max_length - inputLength;
|
||||||
|
str.append(" ".repeat(space));
|
||||||
|
return str.toString();
|
||||||
|
}
|
||||||
|
if (inputLength == max_length){
|
||||||
|
return input;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 提示用户按回车键继续。
|
||||||
|
*/
|
||||||
|
public void pressEnterToContinue(){
|
||||||
|
System.out.println("+ 按回车键继续...");
|
||||||
|
sca.nextLine();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package dao;
|
package dao;
|
||||||
|
|
||||||
import po.Admin;
|
import po.Admin;
|
||||||
@ -6,10 +11,8 @@ import java.sql.ResultSet;
|
|||||||
|
|
||||||
public interface AdminDao {
|
public interface AdminDao {
|
||||||
Admin getAdminByNameByPass(String adminName, String password);
|
Admin getAdminByNameByPass(String adminName, String password);
|
||||||
|
Admin getAdminByIdByPass(int adminId, String password);
|
||||||
void updateAdminPassword(Admin admin);
|
boolean updateAdminPassword(Admin admin);
|
||||||
|
|
||||||
ResultSet fuzzyQueryExampleForName(String name);
|
ResultSet fuzzyQueryExampleForName(String name);
|
||||||
|
|
||||||
ResultSet getAllAdmin();
|
ResultSet getAllAdmin();
|
||||||
}
|
}
|
||||||
|
@ -1,30 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package dao;
|
package dao;
|
||||||
|
|
||||||
import View.Display;
|
|
||||||
import jdbc.JDBC;
|
import jdbc.JDBC;
|
||||||
import po.Admin;
|
import po.Admin;
|
||||||
|
|
||||||
import java.sql.*;
|
import java.sql.*;
|
||||||
|
|
||||||
public class AdminDaoImpl implements AdminDao{
|
public class AdminDaoImpl implements AdminDao{
|
||||||
// @Override
|
|
||||||
// public Admin getAdminByNameByPass(String adminName, String password){
|
|
||||||
// Map<Integer, Admin> map = AdminMap.ADMIN_MAP;//取得所有管理员的数据
|
|
||||||
// Collection<Admin> values = map.values();//取得map中值的集合
|
|
||||||
//
|
|
||||||
// //遍历值的集合,判断是否有数据与参数的名称和密码匹配,如果有,则表示登录成功
|
|
||||||
// Admin admin = null;
|
|
||||||
// for(Admin tmp : values ) {
|
|
||||||
// if(tmp.getAdminName().equals(adminName) && tmp.getAdminPassworld().equals(password)) {
|
|
||||||
// admin = tmp;
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// return admin;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// 从数据库查询指定的用户名和密码
|
/**
|
||||||
|
* 通过用户名和密码获取管理员信息。
|
||||||
|
* 此方法尝试通过提供的用户名和密码从数据库中检索管理员账户信息。
|
||||||
|
* 如果找到匹配的管理员,它将返回一个包含管理员详细信息的Admin对象。
|
||||||
|
* 如果没有找到匹配或发生数据库错误,则返回null。
|
||||||
|
*
|
||||||
|
* @param adminName 管理员用户名。
|
||||||
|
* @param password 管理员密码。
|
||||||
|
* @return 匹配的管理员对象,如果没有找到或发生错误,则为null。
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public Admin getAdminByNameByPass(String adminName, String password) {
|
public Admin getAdminByNameByPass(String adminName, String password) {
|
||||||
Admin admin = null;
|
Admin admin = null;
|
||||||
@ -55,27 +52,95 @@ public class AdminDaoImpl implements AdminDao{
|
|||||||
return admin;
|
return admin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过管理员ID和密码获取管理员信息。
|
||||||
|
* 此方法尝试通过提供的管理员ID和密码从数据库中检索管理员账户信息。
|
||||||
|
* 如果找到匹配的管理员,它将返回一个包含管理员详细信息的Admin对象。
|
||||||
|
* 如果没有找到匹配或发生数据库错误,则返回null。
|
||||||
|
*
|
||||||
|
* @param adminId 管理员ID。
|
||||||
|
* @param password 管理员密码。
|
||||||
|
* @return 匹配的管理员对象,如果没有找到或发生错误,则为null。
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void updateAdminPassword(Admin admin) {
|
public Admin getAdminByIdByPass(int adminId, String password) {
|
||||||
// TODO 完善密码更新功能
|
Admin admin = null;
|
||||||
|
try {
|
||||||
|
// 连接数据库
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
Statement stmt = conn.createStatement();
|
||||||
|
|
||||||
|
String sql = "SELECT * FROM admin WHERE adminId = '" + adminId + "' AND adminPassword = '" + password + "'";
|
||||||
|
|
||||||
|
ResultSet rs = stmt.executeQuery(sql);
|
||||||
|
|
||||||
|
if (rs.next()) {
|
||||||
|
admin = new Admin();
|
||||||
|
admin.setAdminId(rs.getInt("adminId"));
|
||||||
|
admin.setAdminName(rs.getString("adminName"));
|
||||||
|
admin.setAdminPassword(rs.getString("adminPassword"));
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.close();
|
||||||
|
stmt.close();
|
||||||
|
rs.close();
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Database error occurred: " + e.getMessage());
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println("Unexpected error: " + e.getMessage());
|
||||||
|
}
|
||||||
|
return admin;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新管理员密码。
|
||||||
|
* 此方法尝试更新管理员密码。
|
||||||
|
* 如果更新成功,则返回true。
|
||||||
|
* 如果更新失败或发生数据库错误,则返回false。
|
||||||
|
*
|
||||||
|
* @param admin 管理员对象,包含要更新的管理员信息。
|
||||||
|
* @return 更新成功返回true,否则返回false。
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean updateAdminPassword(Admin admin) {
|
||||||
try {
|
try {
|
||||||
Connection conn = JDBC.getConnection();
|
Connection conn = JDBC.getConnection();
|
||||||
Statement stmt = conn.createStatement();
|
Statement stmt = conn.createStatement();
|
||||||
System.out.println("+ Á¬½Óµ½Êý¾Ý¿â");
|
System.out.println("+ Á¬½Óµ½Êý¾Ý¿â");
|
||||||
|
|
||||||
String sql = "UPDATE admin SET adminPassword = ?";
|
String sql = "UPDATE admin SET adminPassword = ? WHERE adminId = ?";
|
||||||
PreparedStatement pst = conn.prepareStatement(sql);
|
PreparedStatement pst = conn.prepareStatement(sql);
|
||||||
pst.setString(1, admin.getAdminPassword());
|
|
||||||
pst.executeUpdate();
|
// 需要更新的用户的Id
|
||||||
System.out.println("+ 更新完毕");
|
int adminIdToUpdate = admin.getAdminId();
|
||||||
|
// 需要更新成的密码
|
||||||
|
String newAdminPassword = admin.getAdminPassword();
|
||||||
|
|
||||||
|
pst.setString(1, newAdminPassword);
|
||||||
|
pst.setInt(2, adminIdToUpdate);
|
||||||
|
|
||||||
|
int rowsAffected = pst.executeUpdate();
|
||||||
|
|
||||||
stmt.close();
|
stmt.close();
|
||||||
conn.close();
|
conn.close();
|
||||||
|
pst.close();
|
||||||
|
|
||||||
|
return rowsAffected > 0;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.err.println("Unexpected error: " + e.getMessage());
|
System.err.println("Unexpected error: " + e.getMessage());
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过模糊查询获取所有管理员信息。
|
||||||
|
* 此方法尝试通过模糊查询从数据库中检索所有管理员信息。
|
||||||
|
* 如果找到匹配的管理员,它将返回一个包含管理员详细信息的ResultSet对象。
|
||||||
|
* 如果没有找到匹配或发生数据库错误,则返回null。
|
||||||
|
*
|
||||||
|
* @param name 管理员名称。
|
||||||
|
* @return 匹配的管理员对象,如果没有找到或发生错误,则为null。
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public ResultSet fuzzyQueryExampleForName(String name) {
|
public ResultSet fuzzyQueryExampleForName(String name) {
|
||||||
try{
|
try{
|
||||||
@ -86,9 +151,7 @@ public class AdminDaoImpl implements AdminDao{
|
|||||||
PreparedStatement pstmt = conn.prepareStatement(sql);
|
PreparedStatement pstmt = conn.prepareStatement(sql);
|
||||||
pstmt.setString(1, name + "%");
|
pstmt.setString(1, name + "%");
|
||||||
|
|
||||||
ResultSet rs = pstmt.executeQuery();
|
return pstmt.executeQuery();
|
||||||
|
|
||||||
return rs;
|
|
||||||
|
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
@ -96,6 +159,14 @@ public class AdminDaoImpl implements AdminDao{
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取所有管理员信息。
|
||||||
|
* 此方法尝试从数据库中检索所有管理员信息。
|
||||||
|
* 如果找到匹配的管理员,它将返回一个包含管理员详细信息的ResultSet对象。
|
||||||
|
* 如果没有找到匹配或发生数据库错误,则返回null。
|
||||||
|
*
|
||||||
|
* @return 所有管理员对象,如果没有找到或发生错误,则为null。
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public ResultSet getAllAdmin() {
|
public ResultSet getAllAdmin() {
|
||||||
try{
|
try{
|
||||||
@ -104,9 +175,7 @@ public class AdminDaoImpl implements AdminDao{
|
|||||||
|
|
||||||
String sql = "SELECT * FROM admin";
|
String sql = "SELECT * FROM admin";
|
||||||
|
|
||||||
ResultSet rs = stmt.executeQuery(sql);
|
return stmt.executeQuery(sql);
|
||||||
|
|
||||||
return rs;
|
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package dao;
|
package dao;
|
||||||
|
|
||||||
import po.Business;
|
import po.Business;
|
||||||
|
import po.Food;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
|
|
||||||
public interface BusinessDao {
|
public interface BusinessDao {
|
||||||
void addNewBusiness(Business business);
|
boolean addNewBusiness(Business business);
|
||||||
|
|
||||||
public int getBusinessNumber();
|
|
||||||
|
|
||||||
ResultSet printAllBusiness();
|
ResultSet printAllBusiness();
|
||||||
|
|
||||||
Business getBusinessByNameByPass(String name, String password);
|
Business getBusinessByNameByPass(String name, String password);
|
||||||
|
Business getBusinessByIdByPass(Integer id, String password);
|
||||||
void deleteId(int id);
|
void deleteId(int id);
|
||||||
|
|
||||||
void deleteName(String Name);
|
void deleteName(String Name);
|
||||||
|
boolean updateBusinessInfo(Business business);
|
||||||
|
boolean updateBusinessPassword(Business business);
|
||||||
|
boolean addNewFood(Food food);
|
||||||
|
ResultSet getAllFoodInfo();
|
||||||
|
boolean updateFoodInfo(Food food, Business business);
|
||||||
|
Food getFoodById(int foodId, int businessId);
|
||||||
|
boolean deleteFoodId(int foodId, Business business);
|
||||||
|
boolean deleteFoodName(String foodName, Business business);
|
||||||
|
ResultSet getBusinessFoodInfo(Business business);
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package dao;
|
package dao;
|
||||||
|
|
||||||
import View.Display;
|
import View.Display;
|
||||||
import jdbc.JDBC;
|
import jdbc.JDBC;
|
||||||
import po.Admin;
|
|
||||||
import po.Business;
|
import po.Business;
|
||||||
|
import po.Food;
|
||||||
|
|
||||||
import java.sql.*;
|
import java.sql.*;
|
||||||
|
|
||||||
public class BusinessDaoImpl implements BusinessDao{
|
public class BusinessDaoImpl implements BusinessDao{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加新的商家信息到数据库。
|
||||||
|
*
|
||||||
|
* @param business 待添加的商家对象,包含商家的所有相关信息。
|
||||||
|
* @return 如果成功添加商家信息则返回true,否则返回false。
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void addNewBusiness(Business business){
|
public boolean addNewBusiness(Business business){
|
||||||
try {
|
try {
|
||||||
Connection conn = JDBC.getConnection();
|
Connection conn = JDBC.getConnection();
|
||||||
|
|
||||||
@ -25,55 +37,46 @@ public class BusinessDaoImpl implements BusinessDao{
|
|||||||
pstmt.setDouble(7, business.getBusinessDeliveryPrice());
|
pstmt.setDouble(7, business.getBusinessDeliveryPrice());
|
||||||
|
|
||||||
pstmt.executeUpdate();
|
pstmt.executeUpdate();
|
||||||
System.out.println("+ 商家增加完毕!");
|
|
||||||
|
|
||||||
pstmt.close();
|
pstmt.close();
|
||||||
conn.close();
|
conn.close();
|
||||||
|
|
||||||
|
return true;
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 打印表中所有元素
|
/**
|
||||||
|
* 查询所有业务信息并返回结果集。
|
||||||
|
* 本方法通过建立数据库连接,创建Statement对象,执行SQL查询语句,
|
||||||
|
* 以获取所有业务信息的结果集。如果在操作过程中发生异常,将打印异常堆栈跟踪。
|
||||||
|
*
|
||||||
|
* @return ResultSet 包含所有业务信息的结果集。如果发生异常,返回null。
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public ResultSet printAllBusiness() {
|
public ResultSet printAllBusiness() {
|
||||||
try{
|
try{
|
||||||
Connection conn = JDBC.getConnection();
|
Connection conn = JDBC.getConnection();
|
||||||
Statement stmt = conn.createStatement();
|
Statement stmt = conn.createStatement();
|
||||||
Display dis = new Display('+', '-', 30);
|
|
||||||
|
|
||||||
String sql = "SELECT * FROM business";
|
String sql = "SELECT * FROM business";
|
||||||
|
|
||||||
ResultSet rs = stmt.executeQuery(sql);
|
return stmt.executeQuery(sql);
|
||||||
|
|
||||||
return rs;
|
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getBusinessNumber(){
|
/**
|
||||||
try{
|
* 根据名称和密码获取商家信息。
|
||||||
Connection conn = JDBC.getConnection();
|
* 通过数据库查询匹配名称和密码的商家,并返回其详细信息。
|
||||||
|
*
|
||||||
String sql = "SELECT COUNT(*) FROM business";
|
* @param name 商家名称
|
||||||
PreparedStatement prs = conn.prepareStatement(sql);
|
* @param password 商家密码
|
||||||
|
* @return 匹配成功返回Business对象,否则返回null
|
||||||
ResultSet res = prs.executeQuery();
|
*/
|
||||||
|
|
||||||
if (res.next()){
|
|
||||||
return res.getInt(1);
|
|
||||||
} else {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
} catch (Exception e){
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Business getBusinessByNameByPass(String name, String password) {
|
public Business getBusinessByNameByPass(String name, String password) {
|
||||||
Business business = null;
|
Business business = null;
|
||||||
@ -91,6 +94,10 @@ public class BusinessDaoImpl implements BusinessDao{
|
|||||||
business.setBusinessId(rs.getInt("businessId"));
|
business.setBusinessId(rs.getInt("businessId"));
|
||||||
business.setBusinessName(rs.getString("businessName"));
|
business.setBusinessName(rs.getString("businessName"));
|
||||||
business.setBusinessPassword(rs.getString("password"));
|
business.setBusinessPassword(rs.getString("password"));
|
||||||
|
business.setBusinessExplain(rs.getString("businessExplain"));
|
||||||
|
business.setBusinessAddress(rs.getString("businessAddress"));
|
||||||
|
business.setBusinessStarPrice(rs.getDouble("starPrice"));
|
||||||
|
business.setBusinessDeliveryPrice(rs.getDouble("deliveryPrice"));
|
||||||
}
|
}
|
||||||
|
|
||||||
conn.close();
|
conn.close();
|
||||||
@ -104,6 +111,78 @@ public class BusinessDaoImpl implements BusinessDao{
|
|||||||
return business;
|
return business;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据ID和密码获取商家信息。
|
||||||
|
* 通过数据库查询匹配ID和密码的商家,并返回其详细信息。
|
||||||
|
*
|
||||||
|
* @param id 商家ID
|
||||||
|
* @param password 商家密码
|
||||||
|
* @return 匹配成功返回Business对象,否则返回null
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Business getBusinessByIdByPass(Integer id, String password) {
|
||||||
|
Business business = null;
|
||||||
|
try {
|
||||||
|
// 连接数据库
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
Statement stmt = conn.createStatement();
|
||||||
|
|
||||||
|
String sql = "SELECT * FROM business WHERE businessId = '" + id + "' AND password = '" + password + "'";
|
||||||
|
|
||||||
|
ResultSet rs = stmt.executeQuery(sql);
|
||||||
|
|
||||||
|
if (rs.next()) {
|
||||||
|
business = new Business();
|
||||||
|
business.setBusinessId(rs.getInt("businessId"));
|
||||||
|
business.setBusinessName(rs.getString("businessName"));
|
||||||
|
business.setBusinessPassword(rs.getString("password"));
|
||||||
|
business.setBusinessExplain(rs.getString("businessExplain"));
|
||||||
|
business.setBusinessAddress(rs.getString("businessAddress"));
|
||||||
|
business.setBusinessStarPrice(rs.getDouble("starPrice"));
|
||||||
|
business.setBusinessDeliveryPrice(rs.getDouble("deliveryPrice"));
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.close();
|
||||||
|
stmt.close();
|
||||||
|
rs.close();
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Database error occurred: " + e.getMessage());
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println("Unexpected error: " + e.getMessage());
|
||||||
|
}
|
||||||
|
return business;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取指定商家的所有食品信息。
|
||||||
|
* 通过数据库查询指定商家的所有食品信息,并返回结果集。
|
||||||
|
*
|
||||||
|
* @param business 商家对象
|
||||||
|
* @return ResultSet 包含指定商家的所有食品信息的结果集。如果发生异常,返回null。
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public ResultSet getBusinessFoodInfo(Business business){
|
||||||
|
try{
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
|
||||||
|
String sql = "SELECT * FROM food WHERE businessId = ?";
|
||||||
|
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql);
|
||||||
|
pstmt.setInt(1, business.getBusinessId());
|
||||||
|
|
||||||
|
return pstmt.executeQuery();
|
||||||
|
} catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据ID删除商家。
|
||||||
|
* 通过数据库删除指定ID的商家。
|
||||||
|
*
|
||||||
|
* @param id 商家ID
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void deleteId(int id) {
|
public void deleteId(int id) {
|
||||||
try{
|
try{
|
||||||
@ -129,6 +208,12 @@ public class BusinessDaoImpl implements BusinessDao{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据名称删除商家。
|
||||||
|
* 通过数据库删除指定名称的商家。
|
||||||
|
*
|
||||||
|
* @param Name 商家名称
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void deleteName(String Name) {
|
public void deleteName(String Name) {
|
||||||
try{
|
try{
|
||||||
@ -153,4 +238,277 @@ public class BusinessDaoImpl implements BusinessDao{
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新商家信息。
|
||||||
|
* 通过数据库更新指定ID的商家信息。
|
||||||
|
*
|
||||||
|
* @param business 商家对象
|
||||||
|
* @return true 更新成功,false 更新失败
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean updateBusinessInfo (Business business) {
|
||||||
|
try {
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
Statement stmt = conn.createStatement();
|
||||||
|
|
||||||
|
String sql = "UPDATE business SET businessName = ?, businessAddress = ?, businessExplain = ?, starPrice = ?, deliveryPrice = ? WHERE businessId = ?";
|
||||||
|
PreparedStatement pst = conn.prepareStatement(sql);
|
||||||
|
|
||||||
|
int businessIdToUpdate = business.getBusinessId();
|
||||||
|
|
||||||
|
pst.setString(1, business.getBusinessName());
|
||||||
|
pst.setString(2, business.getBusinessAddress());
|
||||||
|
pst.setString(3, business.getBusinessExplain());
|
||||||
|
pst.setDouble(4, business.getBusinessStarPrice());
|
||||||
|
pst.setDouble(5, business.getBusinessDeliveryPrice());
|
||||||
|
pst.setInt(6, businessIdToUpdate);
|
||||||
|
|
||||||
|
int rowsAffected = pst.executeUpdate();
|
||||||
|
|
||||||
|
stmt.close();
|
||||||
|
conn.close();
|
||||||
|
pst.close();
|
||||||
|
|
||||||
|
return rowsAffected > 0;
|
||||||
|
} catch ( Exception e ){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新商家密码。
|
||||||
|
* 通过数据库更新指定ID的商家密码。
|
||||||
|
*
|
||||||
|
* @param business 商家对象
|
||||||
|
* @return true 更新成功,false 更新失败
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean updateBusinessPassword (Business business) {
|
||||||
|
try {
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
Statement stmt = conn.createStatement();
|
||||||
|
System.out.println("+ 连接到数据库");
|
||||||
|
|
||||||
|
String sql = "UPDATE business SET password = ? WHERE businessId = ?";
|
||||||
|
PreparedStatement pst = conn.prepareStatement(sql);
|
||||||
|
|
||||||
|
// 需要更新的用户的Id
|
||||||
|
int newBusinessIdToUpdate = business.getBusinessId();
|
||||||
|
// 需要更新成的密码
|
||||||
|
String newBusinessPassword = business.getBusinessPassword();
|
||||||
|
|
||||||
|
pst.setString(1, newBusinessPassword);
|
||||||
|
pst.setInt(2, newBusinessIdToUpdate);
|
||||||
|
|
||||||
|
int rowsAffected = pst.executeUpdate();
|
||||||
|
|
||||||
|
stmt.close();
|
||||||
|
conn.close();
|
||||||
|
pst.close();
|
||||||
|
|
||||||
|
return rowsAffected > 0;
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println("Unexpected error: " + e.getMessage());
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加新的食品。
|
||||||
|
* 通过数据库添加新的食品。
|
||||||
|
*
|
||||||
|
* @param food 食品对象
|
||||||
|
* @return true 添加成功,false 添加失败
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean addNewFood (Food food) {
|
||||||
|
try {
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
|
||||||
|
String sql = "INSERT INTO food (foodId, foodName, foodExplain, foodPrice, businessId) VALUES (?, ?, ?, ?, ?)";
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql);
|
||||||
|
|
||||||
|
pstmt.setInt(1, food.getFoodId());
|
||||||
|
pstmt.setString(2, food.getFoodName());
|
||||||
|
pstmt.setString(3, food.getFoodExplain());
|
||||||
|
pstmt.setDouble(4, food.getFoodPrice());
|
||||||
|
pstmt.setDouble(5, food.getFoodId());
|
||||||
|
|
||||||
|
pstmt.executeUpdate();
|
||||||
|
pstmt.close();
|
||||||
|
conn.close();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
} catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取所有食品信息。
|
||||||
|
* 通过数据库获取所有食品信息。
|
||||||
|
*
|
||||||
|
* @return ResultSet 食品信息
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public ResultSet getAllFoodInfo () {
|
||||||
|
try{
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
Statement stmt = conn.createStatement();
|
||||||
|
|
||||||
|
String sql = "SELECT * FROM food";
|
||||||
|
|
||||||
|
return stmt.executeQuery(sql);
|
||||||
|
} catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新食品信息。
|
||||||
|
* 通过数据库更新指定ID的食品信息。
|
||||||
|
*
|
||||||
|
* @param food 食品对象
|
||||||
|
* @param business 商家对象
|
||||||
|
* @return true 更新成功,false 更新失败
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean updateFoodInfo (Food food, Business business) {
|
||||||
|
try {
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
|
||||||
|
// 3. 准备SQL语句
|
||||||
|
String sql = "UPDATE food SET foodName = ?, foodExplain = ?, foodPrice = ? WHERE businessId = ? AND foodId = ?";
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql);
|
||||||
|
pstmt.setString(1, food.getFoodName());
|
||||||
|
pstmt.setString(2, food.getFoodExplain());
|
||||||
|
pstmt.setDouble(3, food.getFoodPrice());
|
||||||
|
pstmt.setInt(4, food.getBusinessId());
|
||||||
|
pstmt.setInt(5, food.getFoodId());
|
||||||
|
|
||||||
|
int rowsAffected = pstmt.executeUpdate();
|
||||||
|
|
||||||
|
pstmt.close();
|
||||||
|
conn.close();
|
||||||
|
|
||||||
|
return rowsAffected > 0;
|
||||||
|
|
||||||
|
|
||||||
|
} catch ( Exception e ) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据食品ID和商家ID获取食品信息。
|
||||||
|
* 这个方法通过查询数据库来获取特定ID的食品的详细信息。
|
||||||
|
*
|
||||||
|
* @param foodId 食品的唯一标识ID。
|
||||||
|
* @param businessId 商家的唯一标识ID,用于确定食品属于哪个商家。
|
||||||
|
* @return 返回一个Food对象,包含查询到的食品信息。如果没有找到匹配的食品,则返回null。
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Food getFoodById (int foodId, int businessId) {
|
||||||
|
Food food = null;
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 连接数据库
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
Statement stmt = conn.createStatement();
|
||||||
|
|
||||||
|
String sql = "SELECT * FROM food WHERE foodId = '" + foodId + "' AND businessId = '" + businessId + "'";
|
||||||
|
|
||||||
|
ResultSet rs = stmt.executeQuery(sql);
|
||||||
|
|
||||||
|
if (rs.next()) {
|
||||||
|
food = new Food();
|
||||||
|
food.setFoodName(rs.getString("foodName"));
|
||||||
|
food.setFoodExplain(rs.getString("foodExplain"));
|
||||||
|
food.setFoodPrice(rs.getDouble("foodPrice"));
|
||||||
|
food.setFoodId(rs.getInt("foodId"));
|
||||||
|
food.setBusinessId(rs.getInt("businessId"));
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.close();
|
||||||
|
stmt.close();
|
||||||
|
rs.close();
|
||||||
|
|
||||||
|
return food;
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Database error occurred: " + e.getMessage());
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println("Unexpected error: " + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return food;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据食品ID和商家ID删除食品。
|
||||||
|
* 这个方法通过删除数据库中的特定食品记录来删除食品。
|
||||||
|
*
|
||||||
|
* @param foodId 食品的唯一标识ID。
|
||||||
|
* @param business 商家的唯一标识ID,用于确定食品属于哪个商家。
|
||||||
|
* @return 如果删除成功,则返回true;否则返回false。
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean deleteFoodId (int foodId, Business business) {
|
||||||
|
try{
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
|
||||||
|
String sql = "DELETE FROM food WHERE businessId = ? AND foodId = ?";
|
||||||
|
PreparedStatement prep = conn.prepareStatement(sql);
|
||||||
|
|
||||||
|
prep.setInt(1, business.getBusinessId());
|
||||||
|
prep.setInt(2, foodId);
|
||||||
|
|
||||||
|
int rowsAffected = prep.executeUpdate();
|
||||||
|
|
||||||
|
prep.close();
|
||||||
|
conn.close();
|
||||||
|
|
||||||
|
return rowsAffected > 0;
|
||||||
|
|
||||||
|
} catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据食品名称和商家ID删除食品。
|
||||||
|
* 这个方法通过删除数据库中的特定食品记录来删除食品。
|
||||||
|
*
|
||||||
|
* @param foodName 食品的名称。
|
||||||
|
* @param business 商家的唯一标识ID,用于确定食品属于哪个商家。
|
||||||
|
* @return 如果删除成功,则返回true;否则返回false。
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean deleteFoodName (String foodName, Business business) {
|
||||||
|
try{
|
||||||
|
Connection conn = JDBC.getConnection();
|
||||||
|
|
||||||
|
String sql = "DELETE FROM food WHERE businessId = ? AND foodName = ?";
|
||||||
|
PreparedStatement prep = conn.prepareStatement(sql);
|
||||||
|
|
||||||
|
prep.setInt(1, business.getBusinessId());
|
||||||
|
prep.setString(2, foodName);
|
||||||
|
|
||||||
|
int rowsAffected = prep.executeUpdate();
|
||||||
|
|
||||||
|
prep.close();
|
||||||
|
conn.close();
|
||||||
|
|
||||||
|
return rowsAffected > 0;
|
||||||
|
|
||||||
|
} catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package jdbc;
|
package jdbc;
|
||||||
|
|
||||||
import po.Admin;
|
|
||||||
|
|
||||||
import java.beans.Expression;
|
|
||||||
import java.sql.*;
|
import java.sql.*;
|
||||||
|
|
||||||
public class JDBC {
|
public class JDBC {
|
||||||
|
// 成员变量
|
||||||
private static final String URL = "jdbc:mysql://124.220.110.170:3306/jrnitre";
|
private static final String URL = "jdbc:mysql://124.220.110.170:3306/jrnitre";
|
||||||
private static final String user = "jrnitre";
|
private static final String user = "jrnitre";
|
||||||
private static final String Password = "npgt1365";
|
private static final String Password = "npgt1365";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取数据库连接。
|
||||||
|
* 本方法尝试加载MySQL JDBC驱动并建立到数据库的连接。如果驱动加载失败或连接无法建立,
|
||||||
|
* 将打印异常堆栈跟踪并抛出一个运行时异常,指示数据库连接失败。
|
||||||
|
*
|
||||||
|
* @return Connection 返回与数据库建立的连接。
|
||||||
|
* @throws RuntimeException 如果驱动加载失败或无法建立连接,抛出此异常。
|
||||||
|
*/
|
||||||
public static Connection getConnection() {
|
public static Connection getConnection() {
|
||||||
try {
|
try {
|
||||||
Class.forName("com.mysql.cj.jdbc.Driver");
|
Class.forName("com.mysql.cj.jdbc.Driver");
|
||||||
|
@ -1,13 +1,18 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package po;
|
package po;
|
||||||
|
|
||||||
public class Admin {
|
public class Admin {
|
||||||
// 管理员 ID
|
// 成员变量
|
||||||
private Integer adminId;
|
private Integer adminId; // 管理员 ID
|
||||||
// 管理员名
|
private String adminName; // 管理员名
|
||||||
private String adminName;
|
private String adminPassword; // 管理员密码
|
||||||
// 管理员密码
|
|
||||||
private String adminPassword;
|
|
||||||
|
|
||||||
|
// 有参构造方法
|
||||||
|
// 初始化管理员
|
||||||
public Admin (Integer id, String name, String passworld){
|
public Admin (Integer id, String name, String passworld){
|
||||||
super();
|
super();
|
||||||
adminId = id;
|
adminId = id;
|
||||||
@ -15,10 +20,19 @@ public class Admin {
|
|||||||
adminPassword = passworld;
|
adminPassword = passworld;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 无参构造方法
|
||||||
public Admin (){
|
public Admin (){
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 拷贝构造方法
|
||||||
|
public Admin (Admin cpAdmin){
|
||||||
|
adminId = cpAdmin.adminId;
|
||||||
|
adminName = cpAdmin.adminName;
|
||||||
|
adminPassword = cpAdmin.adminPassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
// getter
|
||||||
public Integer getAdminId(){
|
public Integer getAdminId(){
|
||||||
return adminId;
|
return adminId;
|
||||||
}
|
}
|
||||||
@ -31,6 +45,7 @@ public class Admin {
|
|||||||
return adminPassword;
|
return adminPassword;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// setter
|
||||||
public void setAdminId(Integer id){
|
public void setAdminId(Integer id){
|
||||||
adminId = id;
|
adminId = id;
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
package po;
|
package po;
|
||||||
|
|
||||||
public class Business {
|
public class Business {
|
||||||
private Integer businessId;
|
// 成员变量
|
||||||
private String businessName;
|
private Integer businessId; // 商家 ID
|
||||||
private String businessPassword;
|
private String businessName; // 商家名称
|
||||||
private String businessAddress;
|
private String businessPassword; // 商家密码
|
||||||
private String businessExplain;
|
private String businessAddress; // 商家地址
|
||||||
private double businessStarPrice;
|
private String businessExplain; // 商家介绍
|
||||||
private double businessDeliveryPrice;
|
private double businessStarPrice; // 商家 起送费
|
||||||
|
private double businessDeliveryPrice; // 商家 配送费
|
||||||
|
|
||||||
|
// 拷贝构造方法
|
||||||
|
public Business (Business cpBusiness){
|
||||||
|
this.businessId = cpBusiness.getBusinessId();
|
||||||
|
this.businessName = cpBusiness.getBusinessName();
|
||||||
|
this.businessPassword = cpBusiness.getBusinessPassword();
|
||||||
|
this.businessAddress = cpBusiness.getBusinessAddress();
|
||||||
|
this.businessExplain = cpBusiness.getBusinessExplain();
|
||||||
|
this.businessStarPrice = cpBusiness.getBusinessStarPrice();
|
||||||
|
this.businessDeliveryPrice = cpBusiness.getBusinessDeliveryPrice();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 无参构造方法
|
||||||
|
public Business () { super(); }
|
||||||
|
|
||||||
|
|
||||||
|
// setter
|
||||||
public void setBusinessId(Integer id){
|
public void setBusinessId(Integer id){
|
||||||
businessId = id;
|
businessId = id;
|
||||||
}
|
}
|
||||||
@ -37,6 +59,7 @@ public class Business {
|
|||||||
businessDeliveryPrice = deliveryPrice;
|
businessDeliveryPrice = deliveryPrice;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// getter
|
||||||
public Integer getBusinessId(){
|
public Integer getBusinessId(){
|
||||||
return businessId;
|
return businessId;
|
||||||
}
|
}
|
||||||
@ -65,6 +88,7 @@ public class Business {
|
|||||||
return businessDeliveryPrice;
|
return businessDeliveryPrice;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO tototototoString !!!
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return super.toString();
|
return super.toString();
|
||||||
|
@ -0,0 +1,49 @@
|
|||||||
|
/*
|
||||||
|
* Date: 2024-06-18
|
||||||
|
* Design By JRNitre
|
||||||
|
* */
|
||||||
|
|
||||||
|
package po;
|
||||||
|
|
||||||
|
public class Food {
|
||||||
|
// 成员变量
|
||||||
|
private int foodId; // 食品编号
|
||||||
|
private String foodName; // 食品名称
|
||||||
|
private String foodExplain; // 食品说明
|
||||||
|
private double foodPrice; // 食品价格
|
||||||
|
private int businessId; // 所属商家编号
|
||||||
|
|
||||||
|
// setter
|
||||||
|
public void setFoodId(int id){
|
||||||
|
this.foodId = id;
|
||||||
|
}
|
||||||
|
public void setFoodName(String name){
|
||||||
|
this.foodName = name;
|
||||||
|
}
|
||||||
|
public void setFoodExplain(String explain){
|
||||||
|
this.foodExplain = explain;
|
||||||
|
}
|
||||||
|
public void setFoodPrice(double price){
|
||||||
|
this.foodPrice = price;
|
||||||
|
}
|
||||||
|
public void setBusinessId(int id){
|
||||||
|
this.businessId = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
// getter
|
||||||
|
public int getFoodId(){
|
||||||
|
return this.foodId;
|
||||||
|
}
|
||||||
|
public String getFoodName(){
|
||||||
|
return this.foodName;
|
||||||
|
}
|
||||||
|
public String getFoodExplain(){
|
||||||
|
return this.foodExplain;
|
||||||
|
}
|
||||||
|
public double getFoodPrice(){
|
||||||
|
return this.foodPrice;
|
||||||
|
}
|
||||||
|
public int getBusinessId(){
|
||||||
|
return this.businessId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user