package com.action;

import java.io.IOException;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.dao.DB;
import com.orm.TAdmin;

public class admin_servlet extends HttpServlet {
    @Override
    public void service(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
        String type = req.getParameter("type");

        if (type.endsWith("adminMana")) {
            adminMana(req, res);
        }
        if (type.endsWith("adminAdd")) {
            adminAdd(req, res);
        }
        if (type.endsWith("adminDel")) {
            adminDel(req, res);
        }
        if (type.endsWith("adminLogout")) {
            adminLogout(req, res);
        }
    }

    public void adminMana(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
        List adminList = new ArrayList();
        String sql = "select * from t_admin";
        Object[] params = {};
        DB mydb = new DB();
        try {
            mydb.doPstm(sql, params);
            ResultSet rs = mydb.getRs();
            while (rs.next()) {
                TAdmin admin = new TAdmin();
                admin.setUserId(rs.getInt("userId"));
                admin.setUserName(rs.getString("userName"));
                admin.setUserPw(rs.getString("userPw"));
                adminList.add(admin);
            }
            rs.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        mydb.closed();

        req.setAttribute("adminList", adminList);
        req.getRequestDispatcher("admin/admin/adminMana.jsp").forward(req, res);
    }

    public void adminAdd(HttpServletRequest req, HttpServletResponse res) {
        String userId = null;
        String userName = req.getParameter("userName");
        String userPw = req.getParameter("userPw");
        String sql = "insert into t_admin(userId,userName,userPw) values(?,?,?)";
        Object[] params = {userId, userName, userPw};
        DB mydb = new DB();
        mydb.doPstm(sql, params);
        mydb.closed();

        req.setAttribute("message", "²Ù×÷³É¹¦");
        req.setAttribute("path", "admin?type=adminMana");

        String targetURL = "/common/success.jsp";
        dispatch(targetURL, req, res);
    }

    public void adminDel(HttpServletRequest req, HttpServletResponse res) {
        System.out.println(req.getParameter("userId") + "**");
        String sql = "delete from t_admin where userId=" + Integer.parseInt(req.getParameter("userId"));
        Object[] params = {};
        DB mydb = new DB();
        mydb.doPstm(sql, params);
        mydb.closed();

        req.setAttribute("message", "²Ù×÷³É¹¦");
        req.setAttribute("path", "admin?type=adminMana");

        String targetURL = "/common/success.jsp";
        dispatch(targetURL, req, res);
    }

    public void adminLogout(HttpServletRequest req, HttpServletResponse res) {
        req.getSession().setAttribute("user", null);
        req.getSession().setAttribute("userType", null);
        String targetURL = "/login.jsp";
        dispatch(targetURL, req, res);
    }

    public void dispatch(String targetURI, HttpServletRequest request, HttpServletResponse response) {
        RequestDispatcher dispatch = getServletContext().getRequestDispatcher(targetURI);
        try {
            dispatch.forward(request, response);
            return;
        } catch (ServletException e) {
            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }
    }

    @Override
    public void init(ServletConfig config) throws ServletException {
        super.init(config);
    }

    @Override
    public void destroy() {

    }
}
最近下载更多
你爹正在加载中  LV4 2023年7月19日
ZDM133  LV2 2023年5月22日
wangdongtai  LV31 2022年5月20日
ll23344y  LV2 2022年2月15日
夜星1111  LV1 2022年1月6日
hshhshh  LV1 2021年12月26日
Start1  LV15 2021年11月25日
ssssha  LV1 2021年7月6日
ericxu1116  LV24 2021年6月28日
Rovann  LV1 2021年6月20日
最近浏览更多
暂无贡献等级
zayuchuan 1月3日
暂无贡献等级
asddwh  LV13 2023年12月26日
hanzhuohong  LV1 2023年12月25日
komorebi123987  LV5 2023年12月9日
小芳同学  LV1 2023年12月5日
去码头整点薯条  LV3 2023年11月15日
wbx666  LV1 2023年9月25日
你爹正在加载中  LV4 2023年7月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友