springmvc 08 restful crud

项目结构

jar包

配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd">

    <!-- 开启注解扫描 -->
    <context:component-scan base-package="com.xxjqr"></context:component-scan>
    
    <!-- 配置视图转发器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    
    <!-- 处理静态资源请求 -->
    <mvc:default-servlet-handler />
    
    <!-- 使用了上面的标签后还是需要使用该标签来开启非静态资源请求的拦截 -->
    <mvc:annotation-driven></mvc:annotation-driven>
</beans>

前端页面

//index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <a href="list">show all employees</a>
</body>
</html>
//list.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<!-- 静态资源请求的问题
http://www.cnblogs.com/fangqi/archive/2012/10/28/2743108.html
 -->
<script type="text/javascript" src="scripts/jquery-3.0.0.min.js"></script>
<script type="text/javascript"> 
    $(function(){
        $(".delete").click(function(){
            var href = $(this).attr("href");
            $("form").attr("action", href).submit();            
            return false;
        });
    })
</script>
</head>
<body>
    
    <!-- 该form是用来给delete操作做占位用的 -->
    <form action="" method="post">
        <input type="hidden" name="_method" value="DELETE"/>
    </form>

    <c:if test="${empty requestScope.emps}">
        目前没有任何员工信息
    </c:if>
    
    <c:if test="${!empty requestScope.emps}">
        <table border="1" cellpadding="10" cellspacing="0">
            <tr>
                <th>ID</th>
                <th>Name</th>
                <th>Email</th>
                <th>Gender</th>
                <th>Department</th>
                <th>Edit</th>
                <th>Delete</th>
            </tr>
            
            
            <c:forEach items="${requestScope.emps}" var="emp">
                <tr>
                    <td>${emp.empId}</td>
                    <td>${emp.empName}</td>
                    <td>${emp.empEmail}</td>
                    <td>${emp.empGender==0?'Female':'Male'}</td>
                    <td>${emp.department.deptName}</td>
                    <td><a href="emp/${emp.empId}">Edit</a></td>
                    <td><a class="delete" href="emp/${emp.empId}">Delete</a></td>
                </tr>
            </c:forEach>

        </table>
    </c:if>
    
    <br>
    <a href="emp">Add employee</a>

</body>
</html>
//input.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <form:form action="${pageContext.request.contextPath}/emp" method="post" modelAttribute="employee">
        <c:if test="${!empty employee.empId}">
            <form:hidden path="empId"/><!-- id要设成隐藏域注入javabean,否则javabean的id属性为Null -->
            <input type="hidden" name="_method" value="PUT"/>
        </c:if>
        
        name:<form:input path="empName"/><br>
        email:<form:input path="empEmail"/><br>
        
        gender:
        <form:radiobuttons path="empGender" items="${genders}"/><br>
        <!-- items是显示的数据源(map类型)
        提交表单后注入的是map的key值 -->
        
       department:
       <form:select path="department.deptId" items="${depts}" itemLabel="deptName" itemValue="deptId"></form:select>
        <!--
            因为提交表单时不能直接返回一个对象类型,那么这里我们不能直接注入employee的department属性
            所以我们可以用级联特性注入department属性的id属性值
            
            itemLabel:列表显示出来的内容 (deptName是Map中对象类型中的属性)
            itemValue:列表显示内容选中后对应的value值 (deptName也是Map中对象类型中的属性);
            
            注意:要使用itemLabel,itemValue属性,那么数据源必须是Collection或Array类型
        -->
        <br><button type="submit">提交</button>
    </form:form>
    
    <!-- spring form标签
    form标签默认需要绑定一个javabean对象,默认bean名称是"command"
    通常我们都会指定commandName或modelAttribute 属性,来指定使用绑定到的JavaBean的名称
    
    绑定的javabean对象是必须存在于model中的哦,这里绑定的javabean名称是model中的attibuteName
     -->
</body>
</html>

handlers包

@Controller
public class EmployeeHandler {
    @Autowired
    private EmployeeDao employeeDao;
    @Autowired
    private DepartmentDao departmentDao;
    
    @RequestMapping(value="/list")
    public String list(Map<String,Object> map){
        map.put("emps",employeeDao.getAll());
        return "list";
    }
    
    
    //点击Add employee 链接会进来
    @RequestMapping(value={"/emp"},method=RequestMethod.GET)
    public String input(Map<String,Object> map){
        //springmvc表单标签 性别单选选项数据源
        Map<Integer,String> genders = new HashMap<Integer,String>();
        genders.put(0, "Female");
        genders.put(1, "Male");
        
        map.put("genders", genders);
        map.put("employee",new Employee());//springmvc的表单标签 对应bean
        map.put("depts", departmentDao.getAll());//springmvc表单标签 部门数据源
        
        return "input";
    }
    
    /**添加Employee*/
    @RequestMapping(value="/emp",method=RequestMethod.POST)
    public String save(Employee employee){
        System.out.println(employee);
        employeeDao.save(employee);
        return "redirect:list";
    }
    
    /**删除指定id的Employee*/
    @RequestMapping(value="/emp/{id}",method=RequestMethod.DELETE)
    public String delete(@PathVariable("id") Integer id){
        employeeDao.delete(id);
        return "redirect:/list";
    }
    
    /*点击Edit会进来*/
    @RequestMapping(value="/emp/{id}",method=RequestMethod.GET)
    public String input(
            @PathVariable("id") Integer id
            ,Map<String,Object> map){
        //springmvc表单标签 性别单选选项数据源
        Map<Integer,String> genders = new HashMap<Integer,String>();
        genders.put(0, "Female");
        genders.put(1, "Male");
        
        map.put("genders", genders);
        map.put("depts", departmentDao.getAll());//springmvc表单标签 部门数据源
        map.put("employee",employeeDao.getEmployee(id));//springmvc的表单标签 对应bean
        //model中放入employee bean,前端表单有会有回显
        
        return "input";
    }
    
    /**更新操作*/
    @RequestMapping(value="/emp",method=RequestMethod.PUT)
    public String update(Employee employee){
        System.out.println(employee);
        employeeDao.save(employee);
        return "redirect:/list";
    }
}

dao包

package com.xxjqr.dao;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.springframework.stereotype.Repository;

import com.xxjqr.entities.Department;

@Repository
public class DepartmentDao {
    private static Map<Integer,Department> depts;
    static {
        depts = new HashMap<Integer,Department>();
        depts.put(101, new Department(101,"开发部"));
        depts.put(102, new Department(102,"宣传部"));
        depts.put(103, new Department(103,"销售部"));
        depts.put(104, new Department(104,"研发部"));
        depts.put(105, new Department(105,"账务部"));
    }
    
    public Collection<Department> getAll(){
        return depts.values();
    }
    
    public Department getDepartment(Integer id){
        return depts.get(id);
    }
    
}

package com.xxjqr.dao;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

import com.xxjqr.entities.Department;
import com.xxjqr.entities.Employee;

@Repository
public class EmployeeDao {
    private static Map<Integer,Employee> emps;
    private static Integer empId = 1006;
    @Autowired
    private DepartmentDao deptDao;
    
    static {
        emps = new HashMap<Integer,Employee>();
        emps.put(1001, new Employee(1001,"Smith","11@qq.com",1,new Department(101,"开发部")));
        emps.put(1002, new Employee(1002,"Johnson","22@qq.com",0,new Department(102,"宣传部")));
        emps.put(1003, new Employee(1003,"Williams","33@qq.com",0,new Department(103,"销售部")));
        emps.put(1004, new Employee(1004,"Brown","44@qq.com",1,new Department(104,"研发部")));
        emps.put(1005, new Employee(1005,"Jones","55@qq.com",0,new Department(105,"账务部")));
    }
    
    public Collection<Employee> getAll(){
        return emps.values();
    }
    
    public void save(Employee employee){
        if (employee.getEmpId() == null){
            employee.setEmpId(empId++);
        }
        employee.setDepartment(deptDao.getDepartment(employee.getDepartment().getDeptId()));
        emps.put(employee.getEmpId(), employee);
    }
    
    public void delete(Integer id){ 
        if(id != null){
            emps.remove(id);
        }
    }
    
    public Employee getEmployee(Integer id){
        if (id !=null)
            return emps.get(id);
        return null;
    }
}

entities包

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Department {
    private Integer deptId;
    private String deptName;
}
@Data
@AllArgsConstructor
@NoArgsConstructor
@RequiredArgsConstructor
public class Employee {

    private Integer empId;

    @NonNull
    private String empName;
    @NonNull
    private String empEmail;
    @NonNull
    private Integer empGender;//0女,1男
    @NonNull
    private Department department;
}

演示:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,028评论 25 707
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,801评论 6 342
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • 在这章讲的内容是恐惧营销,这章的内容真的让我受益匪浅,之前只知道有情感营销、饥饿营销、服务营销、事件营销等等。今天...
    可乐1991阅读 327评论 0 0
  • 不靠谱PsychoPy入门教程目录: PsychoPy入门00安装 PsychoPy入门01文字和图片的呈现 Ps...
    ChZ_CC阅读 6,413评论 2 4