博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaWeb--MVC案例1-------(5)添加
阅读量:4964 次
发布时间:2019-06-12

本文共 2375 字,大约阅读时间需要 7 分钟。

 

 

1.在index的表单中转向newCustomer.jsp

Name:
Address:
Phone:
Create New Customer

  2.newCustomer.jsp中进行

<%@ page import="MVCCases.Customer" %><%@ page import="java.util.List" %><%--  Created by IntelliJ IDEA.  User: Skye  Date: 2017/12/11  Time: 9:46  To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" language="java" %>    Title<%    Object message = request.getAttribute("message");    if(message!= null){        %>        
<%=message%>
<% }%>
<%--colspan="2"用来指定单元格横向跨越的列数 横跨两列--%> <%--rowspan的作用是指定单元格纵向跨越的行数--%>
CustomerName: "/>
Address "/>
Phone "

  3.CustomerServlet中进行add()方法的编写

注意区分有无重复姓名,若有则进行转发,若么有,则进行重定向

private void add(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {        //1.获取添加的顾客的信息        String name = req.getParameter("name");        String address = req.getParameter("address");        String phone = req.getParameter("phone");        long count = customerDAO.getCountWithName(name);        if(count > 0){            req.setAttribute("message", "用户名" + name + "已被占用");            req.getRequestDispatcher("/newCustomer.jsp").forward(req, resp);            return;        }        //2.创建一个Customer对象        Customer customer = new Customer(name, address, phone);        customerDAO.save(customer);        //若添加成功,则重定向到成功页面        resp.sendRedirect("success.jsp");    }

  5.重定向的success.jsp

<%@ page import="MVCCases.Customer" %><%@ page import="java.util.List" %><%--  Created by IntelliJ IDEA.  User: Skye  Date: 2017/12/11  Time: 9:19  To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" language="java" %>    Title    

操作成功

return!

  

转载于:https://www.cnblogs.com/SkyeAngel/p/8018856.html

你可能感兴趣的文章
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
【设计模式】工厂模式
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
機械の総合病院 [MISSION LEVEL: C]
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>