• 大小: 18.29MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-09
  • 语言: 其他
  • 标签: JSP  Mysql  Tomcat  Java  JDK  

资源简介

超市会员积分管理系统主要用于实现了企业管理数据统计等。本系统结构如下:
(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\.mymetadata

     文件       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.xml

     文件         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个文件信息

评论

共有 条评论