资源简介
超市会员积分管理系统主要用于实现了企业管理数据统计等。本系统结构如下:
(1)网络会员管理中心界面:
会员修改密码信息模块:实现会员密码功能;
会员登陆模块:实现会员登陆功能;
会员注册模块:实现会员注册功能;
留言板模块:实现留言板留言功能
(2)后台管理界面:
系统用户管理模块:实现管理员的增加、查看功能;
会员信息管理模块:实现会员信息的增加、修改、查看功能;
注册用户管理模块:实现注册用户的增加、修改、查看功能;
会员卡管理模块:实现会员卡信息的增加、查看功能;
商品销售管理模块:实现商品信息的增加、查看功能;
会员积分管理模块:实现合作公司信息的增加、查看功能;
信息统计模块:实现数据统计报表功能;
留言板模块:实现留言板信息的增加、修改、查看功能;
(1)网络会员管理中心界面:
会员修改密码信息模块:实现会员密码功能;
会员登陆模块:实现会员登陆功能;
会员注册模块:实现会员注册功能;
留言板模块:实现留言板留言功能
(2)后台管理界面:
系统用户管理模块:实现管理员的增加、查看功能;
会员信息管理模块:实现会员信息的增加、修改、查看功能;
注册用户管理模块:实现注册用户的增加、修改、查看功能;
会员卡管理模块:实现会员卡信息的增加、查看功能;
商品销售管理模块:实现商品信息的增加、查看功能;
会员积分管理模块:实现合作公司信息的增加、查看功能;
信息统计模块:实现数据统计报表功能;
留言板模块:实现留言板信息的增加、修改、查看功能;
代码片段和文件信息
package com.action;
/**
* 管理员登陆 增加 修改 删除 删除登陆日志
*/
import java.io.IOException;
import java.util.List;
import java.util.StringTokenizer;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import com.bean.AdminBean;
import com.bean.SystemBean;
import com.util.Constant;
import com.util.MD5;
public class AdminAction extends HttpServlet {
/**
* Constructor of the object.
*/
public AdminAction() {
super();
}
/**
* Destruction of the servlet.
*/
public void destroy() {
super.destroy(); // Just puts “destroy“ string in log
// Put your code here
}
/**
* The doGet method of the servlet.
*
* This method is called when a form has its tag value method equals to get.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doGet(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
doPost(requestresponse);
}
/**
* The doPost method of the servlet.
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
response.setContentType(Constant.CONTENTTYPE);
request.setCharacterEncoding(Constant.CHARACTERENCODING);
try{
String method=request.getParameter(“method“).trim();
AdminBean loginbean = new AdminBean();
HttpSession session = request.getSession();
session.setMaxInactiveInterval(1200);
SystemBean systembean = new SystemBean();
String sysdir = systembean.getDir();
if(method.equals(“one“)){//admin登录
String username = request.getParameter(“username“);
String password = request.getParameter(“password“);
if(username == null||username.trim().equals(““)){
request.setAttribute(“message“ “请正确输入用户名!“);
request.getRequestDispatcher(sysdir+“/login.jsp“).forward(request response);
}
else if(password == null||password.trim().equals(““)){
request.setAttribute(“message“ “请输入密码!“);
request.getRequestDispatcher(sysdir+“/login.jsp“).forward(request response);
}
else{
String md5password = MD5.MD5(password);
String agent = request.getHeader(“user-agent“);
StringTokenizer st = new StringTokenizer(agent“;“);
String useros=st.nextToken();
String loginip = request.getRemoteA
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17425 2018-11-07 18:36 超市积分管理系统\数据库\jf.sql
文件 2354 2015-05-08 21:22 超市积分管理系统\源代码\jf\.classpath
文件 279 2015-05-08 21:22 超市积分管理系统\源代码\jf\.myme
文件 1745 2015-05-08 21:22 超市积分管理系统\源代码\jf\.project
文件 503 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\.jsdtscope
文件 401 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\org.eclipse.jdt.core.prefs
文件 114 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\org.eclipse.jst.ws.cxf.core.prefs
文件 470 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\org.eclipse.wst.common.component
文件 252 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2015-05-08 21:22 超市积分管理系统\源代码\jf\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 9092 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\AdminAction.java
文件 5642 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\AfficheAction.java
文件 5789 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\CommonAction.java
文件 18716 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\ComServlet.java
文件 6986 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\GuestBookAction.java
文件 7927 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\LoginAction.java
文件 10522 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\MemberAction.java
文件 6688 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\MemberManageAction.java
文件 11196 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\NewsServlet.java
文件 7655 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\action\UpServlet.java
文件 7970 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\AdminBean.java
文件 12956 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\AfficheBean.java
文件 4538 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\ComBean.java
文件 10482 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\GuestBookBean.java
文件 14536 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\MemberBean.java
文件 17386 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\MemberManageBean.java
文件 13393 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\NewsBean.java
文件 2039 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\bean\SystemBean.java
文件 318 2015-05-08 21:22 超市积分管理系统\源代码\jf\src\com\util\CheckCode.java
............此处省略798个文件信息
相关资源
- 企业车辆管理系统设计与实现.rar
- 网上订餐系统外卖
- 医院分诊挂号管理系统
- JNDI整合SSH
- 基于SSM的简单图书管理系统
- tomcat1.6 Windows32位及64位
- 简单的ssh框架项目
- tomcat 6 32位和64位
- apache-tomcat-6.0.53 linux+windows64版本+对应
- apache-tomcat-8.5.46-windows-x64.zip
- tomcat7,tomcat8,tomcat9
- ssm 框架做的电子商城购物网站完整代
- 支持国密SSL通信协议的TOMCAT7.0.96,大
- tomcat_v8.0.35
- canal.deployer-1.0.24.tar.gz
- 报刊订阅系统(需联网).rar
- Navicat Premium 永久破解免费版
- Cometd可运行
- 记账app,功能较完整,附带登陆,注
- apache-tomcat-8.5.35
- SSM框架最新配置jdk8+tomcat8.5.24
- 报价管理系统源码
- apache-tomcat-7.0.52 解压免安装版tomcat7
- 一个关于健康的小型网站前后端都有
- 基于SSM的公园园林绿化管理系统
- jeesite上传图片到数据库并解析展示
- 通用各类数据库密码字典
- tomcat 版本6、7、8
- tomcat-7.0.47
- 毕业设计网上选题管理系统
评论
共有 条评论