栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

JavaWEB十:Servlet优化1 实现将各种请求由一个组件进行统一调度后响应

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

JavaWEB十:Servlet优化1 实现将各种请求由一个组件进行统一调度后响应

Servlet优化1 实现将各种请求由一个组件进行统一调度后响应
    截取各种post/get请求,在一个组件种进行统一调配 servlet组件
    // 所有的html内post请求的action值和get请求中的href值,全部变更为customers.do
    @WebServlet("/customers.do")
    public class CustomersServlet extends ViewbaseServlet {
        // 属性
        private ListIpm listIpm = new ListIpm();
        // service方法,将所有的get/post请求统一拦截,然后调配至相应do方法
        @Override
        protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            req.setCharacterEncoding("UTF-8");
            // 将各html文件与js文件中请求标记的值赋给operate变量
            String operate = req.getParameter("operate");
            if (StringUtil.isEmpty(operate)) {
                operate = "index";
            }
            // 使用反射,获取该对象对应的运行时类内的所有方法,使方法名与operate代表请求信息一一对应
            Method[] methods = this.getClass().getDeclaredMethods();
            for (Method m : methods) {
                String methodName = m.getName();
                if (operate.equals(methodName)) {
                    try {
                        m.invoke(this, req, resp);
                        break;
                    } catch (IllegalAccessException e) {
                        e.printStackTrace();
                    } catch (InvocationTargetException e) {
                        e.printStackTrace();
                    }
                }
                throw new RuntimeException("operate值非法");
            }
        }
    	
        // 下面的index、delete、edit、update、add方法,是各请求的具体实现方法
        protected void index(HttpServletRequest req, HttpServletResponse resp) {
            Connection conn = null;
            try {
                // 1.连接数据库,实例化DAO中的实现类,得到session
                conn = JdbcUtils.getConnection();
                ListIpm ipm = new ListIpm();
                HttpSession session = req.getSession();
                // 2.分页功能
                // 2.1 给pageOn赋初始值,用于在js无返回页面值时,html可以明确显示哪个分页
                int pageOn = 1;
                // 3.确认是否为查询按钮提交的数据
                // 3.1 获取表单中隐藏域的关键字
                String oper = req.getParameter("oper");
                String key = null;
                // 3.2 判断获取的oper中的值,从而确定查询按钮被触发,显示的就是查询后的结果,页面调整到从首页显示
                if (StringUtil.isNotEmpty(oper) && "search".equals(oper)) {
                    pageOn = 1;
                    // key是查询得到的关键字
                    key = req.getParameter("keyword");
                    if (StringUtil.isEmpty(key)) {
                        key = "";
                    }
                    // 如果查询输入栏中有值,那么就将这个值保存在作用域中,可以被组件或html调用
                    session.setAttribute("k",key);
                }else {
    
                    // 2.3获取js文件中的page,如果html页面的控制页面按钮被触动,就将页面值赋给pageOn
                    String pageStr = req.getParameter("page");
                    if (StringUtil.isNotEmpty(pageStr)) {
                        pageOn = Integer.parseInt(pageStr);
                    }
                    // 如果是其它按钮被触发,那么key要从保存作用域中读值,这时可能时查询之后的翻页,key值还应该时查询时输入的值。
                    Object keyObj = session.getAttribute("k");
                    if (keyObj == null) {
                        key =  "";
                    }else {
                        key = (String) keyObj;
                    }
                }
                // 2.2 将pageOn保存到作用域中
                session.setAttribute("pageOn",pageOn);
                List custList = ipm.getList(conn,"%"+ key +"%",pageOn);
                session.setAttribute("cl",custList);
    
                // 4 获取客户个数,用于优化html中分页按钮功能
                long count = 0L;
                count = ipm.getCount(conn,"%"+key+"%");
                int max = (int) (count+2-1)/2;
                session.setAttribute("max",max);
                // 5.调用父类的模板处理方法
                super.processTemplate("index",req,resp);
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                JdbcUtils.closeResource(conn,null);
            }
        }
        
        private void add(HttpServletRequest req, HttpServletResponse resp)  {
            Connection conn = null;
            try {
                String name = req.getParameter("name");
                String email = req.getParameter("email");
                String birth = req.getParameter("birth");
                SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
                Date date = format.parse(birth);
                conn = JdbcUtils.getConnection();
                listIpm.addCustomer(conn,name,email,date);
                resp.sendRedirect("customers.do");
    
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                JdbcUtils.closeResource(conn,null);
            }
        }
        
        private void delete(HttpServletRequest req, HttpServletResponse resp)  {
            String idStr = req.getParameter("sid");
            if (StringUtil.isNotEmpty(idStr)) {
                Connection conn = null;
                try {
                    int id = Integer.parseInt(idStr);
                    conn = JdbcUtils.getConnection();
                    listIpm.delById(conn,id);
                    resp.sendRedirect("customers.do");
                } catch (Exception e) {
                    e.printStackTrace();
                } finally {
                    JdbcUtils.closeResource(conn,null);
                }
            }
        }
        
        private void edit(HttpServletRequest req, HttpServletResponse resp)  {
            Connection conn = null;
            try {
                conn = JdbcUtils.getConnection();
                // 1.去数据库中查询某一个库存记录,根据thymeleaf在html中的超链接标签中提供的id
                String idStr = req.getParameter("cid");
                // 2.将判断idStr不是空字符串且不为null的语句写成一个工具类内的方法,可以方便后续频繁调用
                if (StringUtil.isNotEmpty(idStr)) {
                    int id = Integer.parseInt(idStr);
                    System.out.println(id);
                    Customers customer = listIpm.getCustomerById(conn, id);
                    System.out.println(customer);
                    // 3.将获取到的对象变量以键值对的形式保存到作用域中
                    req.setAttribute("cu" ,customer);
                    // 4.调用模板处理方法,连接到edit.html文件中(如果该页面不存在,就创建一个)
                    super.processTemplate("edit",req,resp);
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                JdbcUtils.closeResource(conn,null);
            }
    
        }
        
        private void update(HttpServletRequest req, HttpServletResponse resp) {
            Connection conn = null;
            try {
                String idStr = req.getParameter("id");
                int id = Integer.parseInt(idStr);
                String name = req.getParameter("name");
                String email = req.getParameter("email");
                String birth = req.getParameter("birth");
                SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
                Date date = format.parse(birth);
                conn = JdbcUtils.getConnection();
                listIpm.updateById(conn,name,email,date,id);
                resp.sendRedirect("customers.do");
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                JdbcUtils.closeResource(conn,null);
            }
        }
    }
    
    html文件

    index.html

    
    
    
    
        
        
        
    
    
    

    欢迎使用客户后台管理系统

    请输入查询关键字
    cust_id cust_name cust_email cust_birth
    无客户名单!
    1 太白金星 tbstart@163.com 1000-1-1

    add.html

    
    
    
        
        
        
    
    
    
    

    修改/编辑库存信息

    cust_name
    cust_email
    cust_birth

    edit.html

    
    
    
    
        
        
    
    
    

    修改/编辑库存信息

    cust_id
    cust_name
    cust_email
    cust_birth
    js文件
    function delCust(s) {
        if (/confirm/i('是否确认删除')) {
            
            window.location.href = 'customers.do?sid=' + s +'&operate=delete';
        }
    }
    
    function pageControl(page) {
        if (/confirm/i("确认")) {
            
            window.location.href = 'customers.do?page=' + page +'&operate=index';
        }
    }
    
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/771009.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号