继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

springmvc-批量删除学习笔记

慕仔4209126
关注TA
已关注
手记 304
粉丝 69
获赞 305

index.jsp

<%@ page language="java" pageEncoding="UTF-8"%><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <body>     <form action="${pageContext.request.contextPath}/emp/deleteAll.action" method="POST">        <table border="2" align="center">            <tr>                <th>编号</th>                <th>姓名</th>            </tr>            <tr>                <td><input type="checkbox" name="ids" value="1"/></td>                <td>哈哈</td>            </tr>            <tr>                <td><input type="checkbox" name="ids" value="2"/></td>                <td>呵呵</td>            </tr>            <tr>                <td><input type="checkbox" name="ids" value="3"/></td>                <td>嘻嘻</td>            </tr>            <tr>                <td><input type="checkbox" name="ids" value="4"/></td>                <td>笨笨</td>            </tr>            <tr>                <td><input type="checkbox" name="ids" value="5"/></td>                <td>聪聪</td>            </tr>            <tr>                <td>                    <input type="submit" value="删除"/>                </td>            </tr>        </table>    </form>  </body></html>

java

import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;@Controller@RequestMapping(value="/emp")public class EmpAction {    @RequestMapping(value="/deleteAll",method=RequestMethod.POST)    public String deleteAll(Model model,int[] ids) throws Exception{        System.out.println("需要删除的员工编号分别是:");        for(int id : ids){            System.out.print(id+" ");        }        model.addAttribute("message","批量删除员工成功");        return "/jsp/ok.jsp";    }}

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP