基于(springmvc+tomcat+JavaScript)的收支管理MoneySSM系统
开发工具:eclipse、tomcat、navicat、mysql8.0
开发技术:Java、html、css、JavaScript、jsp、springmvc。
功能实现:OB列表、菜单管理、菜单主页面、充值列表、出资列表、登录页面、分配角色、富有日志、角色管理、开户列表、提现记录、新增菜单、新增角色、新增用户、信息修改、修改菜单、修改角色、修改用户、用户管理、在线用户。源码地址:https://download.youkuaiyun.com/download/m0_51152186/86404823
数据库SQL语句:https://download.youkuaiyun.com/download/m0_51152186/86404833
一、eclipse中新建web项目。
创建Dynamic Web Project–动态web项目。
打开eclipse,在工具栏选在New–>Dynamic Web Project
编写mvc中属于view的jsp代码
<!DOCTYPE html>
<html>
<head>
<title>activity1.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
<div id="Layer1" style="position:absolute; left:0px; top:0px; width:100%; height:100%">
<img src=".../Images/activity/activity1.png" width="100%" height="100%"/>
</div>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'activity.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<div id="Layer1" style="position:absolute; left:0px; top:0px; width:100%; height:100%">
<img src="<%=path%>/Images/activity/activity1.png" width="100%" height="100%"/>
</div>
</body>
</html>
功能实现:OB列表、菜单管理、菜单主页面、充值列表、出资列表、登录页面、分配角色、富有日志、角色管理、开户列表、提现记录、新增菜单、新增角色、新增用户、信息修改、修改菜单、修改角色、修改用户、用户管理、在线用户。