1. 需求描述
1.1 显示所有员工信息
URI:emps
请求方式:GET
显示效果
1.2 添加操作- 去往添加页面
显示添加页面:
URI:emp
请求方式:GET
显示效果
1.3 添加操作- 添加员工
添加员工信息:
URI:emp
请求方式:POST
显示效果:完成添加, 重定向到 list 页面。
1.4 删除操作
URL:emp/{id}
请求方式:DELETE
删除后效果:对应记录从数据表中删除
1.5 修改操作- 去往修改页面
URI:emp/{id}
请求方式:GET
显示效果: 回显表单。
1.6 修改操作- 修改员工
URI:emp
请求方式:PUT
显示效果:完成修改, 重定向到 list 页面。
1.7 相关的类
省略了 Service 层
实体类:Employee、Department
Handler:EmployeeHandler
Dao:EmployeeDao、DepartmentDao
1.8 相关的页面
list.jsp
input.jsp
edit.jsp
2. 搭建开发环境
2.1 创建配置文件:springmvc.xml 增加 context,mvc,beans 名称空间。
<?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/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
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.0.xsd">
<!-- 配置扫描的包:com.atguigu.springmvc.crud -->
<context:component-scan base-package="com.suncaper.springmvc"/>
<!-- 配置视图解析器:默认采用转发 -->
<bean id="internalResourceViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
2.2 配置核心控制器:web.xml
<servlet>
<servlet-name>springDispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springDispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
2.3 将 POST 请求转换为 PUT 或 DELETE 请求
<filter>
<filter-name>HiddenHttpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HiddenHttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
2.4 创建相关页面
/WEB-INF/views/list.jsp
index.jsp
2.5 增加实体类
2.6 增加 DAO 类
package com.suncaper.springmvc.crud.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.suncaper.springmvc.crud.entities.Department;
import com.suncaper.springmvc.crud.entities.Employee;
@Repository
public class EmployeeDao {
private static Map<Integer, Employee> employees = null;
@Autowired
private DepartmentDao departmentDao;
static{
employees = new HashMap<Integer, Employee>();
employees.put(1001, new Employee(1001, "E-AA", "aa@163.com", 1,new Department(101, "D-AA")));
employees.put(