课程大作业课 程 JSP 程序设计 学 院 计算机工程学院 姓 名 沈叶 班 级 11 计 2S 学 号 11141212 指导老师 何胜 2024 年 12 月 18 日个人管理系统财务管理模块设计班级: 11 计 2S 学号:11141212 姓名:沈叶一、设计需求工具:myeclipse 8.5 Navicat for MySQLfiance 数据库设计:CREATE TABLE `finance` (`userName` varchar(30) NOT NULL,`date` varchar(30) NOT NULL, `count` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `description` varchar(30) NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=gb2312;二、设计步骤myeclipse 8.5 内操作:第一步:新建一个 financeManager 包第二步:新建类 LookFinanceBean,源码如下 /* * To change this template, choose Tools | Templates * and open the template in the editor. */package financeManager;/** * */public class LookFinanceBean { private String userName; private String date; private String count; private String type; public String getUserName() {return userName;}public void setUserName(String userName) {this.userName = userName;}public String getDate() {return date;}public void setDate(String date) {this.date = date;}public String getCount() {return count;}public void setCount(String count) {this.count = count;}public String getType() {return type;}public void setType(String type) {this.type = type;}public String getDescription() {return description;}public void setDescription(String description) {this.description = description;}private String description; }第三步:新建类 LookFinanceServlet,源码如下 * To change this template, choose Tools | Templates * and open the template in the editor. */package financeManager;import java.io.IOException;import java.sql.*;import java.util.ArrayList;import javax.servlet.ServletException;import javax.swing.JOptionPane;import loginRegister.LoginBean;/** * */public class LookFinanceServlet extends HttpServlet { public void wrong1(){ String...