empMapper.updateEmpById(m);
}
//用于批量的插入数据
@Test
public void insertDeptByBATCH() {
DeptMapper OCM=sqlSession.getMapper(DeptMapper.class);
for(int i=0;i<10;i++) {
String id=UUID.randomUUID().toString().substring(0, 5);
OCM.insertByDept(new Dept(id));
}
}
}
注:对应的bean的构造方法没有添加,请自己添加
8.查询_分页后台代码的完成
===========================================================================
1.主页面的执行流程:访问Index.jsp页面->index.jsp页面发送出查询信息列表的请求->EmpController来接受请求,然后查询出员工数据->跳转到list,jsp页面进行展示
2.在index.jsp中创建的内容:
<%@ page language=“java” contentType=“text/html; charset=utf-8”
pageEncoding=“utf-8”%>
public class EmpController {
public String getAllEmpInfo() {
//我们有视图解析器所以返回的list,会自动给它添加前缀和后缀
return “list”;
}}
所以先在/WEB-INF/view/目录下创建list,jsp:
<1>.创建EmpService:
public interface EmpService {
public List getALlEmpInfo();
}
<2>在serviceImpl中来实现具体的接口EmpServiceImpl:
public class EmpServiceImpl implements EmpService {
// service依赖于Dao
@Autowired
EmpMapper eMapper;
@Override
public List getALlEmpInfo() {
// TODO Auto-generated method stub
return eMapper.getEmpInfo();
}
}
但是如果数据较为庞大,每一次都查询所有的数据太过于繁琐,所以引入分页的组件PageHelper:
1.现在pom中引入pageHepler插件(直接在maven仓库中搜索pagehelper,选择对应的版本下载即可)
2.在mybatis的全局配置中注册分页组件:
3.引用组件也特别简单,只需要在查询之前调用PageHelper.startPage方法即可;
在EmpController的getAllEmpInfo()方法中调用,注意一定要写在查询之前,而且后面紧跟的这个查询就是分页查询;
接下来就对查询的分页结果进行包装,其中PageInfo中包含了这个页面的所有信息,所以只需要将pageInfo交给页面接收就行了:
PageInfo page=new PageInfo(lemp,5);//5:表示每次只显示5页的导航菜单
代码详情:
@Controller
public class EmpController {
@Autowired
EmpService empService;
//拦截emp请求
@RequestMapping(“/emp”)
public String getAllEmpInfo(@RequestParam(value=“pn”,defaultValue=“1” ) Integer pn) {
Map
//为了方便快速查询,所以引入PageHelper分页查询
//表示从第pn查,每一页显示5条数据
PageHelper.startPage(pn, 5);//后面紧跟的这个查询就是分页查询
List lemp=empService.getALlEmpInfo();
//将查询的分页结果进行包装,其中PageInfo中包含了这个页面的所有信息,所以只需要将pageInfo交给页面接受就行了
PageInfo page=new PageInfo(lemp,5);//5:表示每次只显示5页的导航菜单
map.put(“pageInfo”,page );
//我们有视图解析器所以返回的list,会自动给它添加前缀和后缀
return “list”;
}
}
9.查询_使用spring的单元测试测试分页请求
=====================================================================================
package com.test;
//@RunWith帮我们创建容器
//@ContextConfiguration指定创建容器时使用哪个配置文件
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { “classpath:conf/spring.xml”, “classpath:conf/spring-mvc.xml” })
@WebAppConfiguration
public class Test2 {
// 传入spring-mvc的ioc;
// 注:@Autowired只能装配IOC里面的,所以在上面添加了一个WebAppConfiguration注解,拿到web的ioc容器
@Autowired
WebApplicationContext context;
// 虚拟单元测试请求,获取处理结果
MockMvc mocMvc;
// 每次使用之前都要初始化一次,所以添加一个before注解
@Before
public void initMockMvc() {
// 只有先创建才能使用
mocMvc = MockMvcBuilders.webAppContextSetup(context).build();// 这个mocMvc就能模拟我的mvc请求
}
@Test
public void testPage() throws Exception {
// 模拟请求拿到返回值
MvcResult result = mocMvc.perform(MockMvcRequestBuilders.get(“/emp”).param(“pn”, “1”)).andReturn();
// 请求成功以后,请求域中会有pageInfo,那么我们就可以去取出进行验证
MockHttpServletRequest request = result.getRequest();
PageInfo pageInfo = (PageInfo) request.getAttribute(“pageInfo”);
System.out.println(“当前页码=” + pageInfo.getPageNum());
System.out.println(“总页码=” + pageInfo.getPages());
System.out.println(“总记录数=” + pageInfo.getTotal());
System.out.println(“在页面需要连续显示的页码=”);
int pageNu[] = pageInfo.getNavigatepageNums();
for (int nu : pageNu) {
System.out.print(nu + " ");
}
// 获取员工数据
List leEmps = pageInfo.getList();
for (Emp e : leEmps) {
System.out.println(e.toString());
}
}
}
10.查询_搭建BootStrap分页页面以及路径解析
========================================================================================
1.web路径,不以/开始的相对路径,找资源,以当前文件为基准,特别容易出问题
2.web路径以/开始的相对路径,找资源,以服务器为基准(http://localhost:3306/weservice/)
也就是说在找资源时要加上http://localhost:3306/weservice/,但是为了避免是写错误或者麻烦,我们可以使用这种方法来自动获取路径:
<%
pageContext.setAttribute(“App_Path”, request.getContextPath());
%>
取值: A p p P a t h / 资 源 路 径 : 比 如 我 的 要 找 / s s m P r o j e c t / s r c / m a i n / w e b a p p / j s / j q u e r y 3 . 3.1. j s 文 件 , 那 么 就 可 以 直 接 写 : {App_Path}/资源路径: 比如我的要找/ssmProject/src/main/webapp/js/jquery_3.3.1.js文件,那么就可以直接写: AppPath/资源路径:比如我的要找/ssmProject/src/main/webapp/js/jquery3.3.1.js文件,那么就可以直接写:{App_Path}/js/jquery_3.3.1.js
list.jsp文件:
<%@ page language=“java” contentType=“text/html; charset=utf-8”
pageEncoding=“utf-8”%>
员工列表href=“https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css”>
新增
删除
编辑
删除
aria-hidden=“true”>«
aria-hidden=“true”>»
11.查询_显示分页数据
=========================================================================
使用此语句,先引入核心标签库:<%@ taglib uri=“http://java.sun.com/jsp/jstl/core” prefix=“c” %>
注:如果报错,就先在pom中引入jstl标签库
javax.servlet
jstl
1.2
目前就只有这一个版本,不要引用错了
同样是list.jsp文件“
<%@ page language=“java” contentType=“text/html; charset=utf-8”
pageEncoding=“utf-8”%>
<%@ taglib uri=“http://java.sun.com/jsp/jstl/core” prefix=“c”%>
员工列表href=“https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css”>
<%
pageContext.setAttribute(“App_Path”, request.getContextPath());
%>
新增
删除
编辑
删除
,总共 p a g e I n f o . p a g e s 页 , 共 {pageInfo.pages}页,共 pageInfo.pages页,共{pageInfo.total}条记录
aria-hidden=“true”>«
aria-hidden=“true”>»
12.查询_返回分页json数据
=============================================================================
具体流程:index.jsp发送json请求进行员工分页的数据查询->服务器将查出的数据以json字符串的形式返回浏览器——>浏览器收到js字符串,使用js进行解析
maven下:搜索jackson->jackson DataBind->选择你需要的版本
为了让浏览器知道查询或者修改等成功与否,需要添加一个状态类来显示状态信息,在po里新创建一个msg对象,通用的返回类
public class Msg {
private Integer code;//状态码(规定100:成功,200:失败)
private String msg;//提示信息
private Map
public Msg() {}
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public Map
return extend;
}
public void setExtend(Map
this.extend = extend;
}
public static Msg success() {
Msg result=new Msg();
result.setCode(100);
result.setMsg(“deal success”);
return result;
}
public static Msg fail() {
Msg result=new Msg();
result.setCode(200);
result.setMsg(“deal failure”);
return result;
}
}
@Controller
public class EmpController {
@Autowired
EmpService empService;
@ResponseBody
@RequestMapping(“/emp”)
public Msg getEmps(@RequestParam(value=“pn”,defaultValue=“1” ) Integer pn) {
//为了方便快速查询,所以引入PageHelper分页查询
//表示从第pn查,每一页显示5条数据
PageHelper.startPage(pn, 5);//后面紧跟的这个查询就是分页查询
List lemp=empService.getALlEmpInfo();
//将查询的分页结果进行包装,其中PageInfo中包含了这个页面的所有信息,所以只需要将pageInfo交给页面接受就行了
PageInfo page=new PageInfo(lemp,5);//5:表示每次只显示5页的导航菜单
return Msg.success().add(“pageInfo”,page );//返回的不仅有状态消息,其中由于add方法,也将
}
}
13.查询_构建员工列表
=========================================================================
代码详情如下:
<%@ page language=“java” contentType=“text/html; charset=utf-8”
pageEncoding=“utf-8”%>
<%@ taglib uri=“http://java.sun.com/jsp/jstl/core” prefix=“c”%>
员工列表href=“https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css”>
<%
pageContext.setAttribute(“App_Path”, request.getContextPath());
%>
致一科技@ style=“font-family: STXingkai; color: graytext;”>Zhiyi Technology 新增 删除 14.查询_构建分页条 ======================================================================== 对应的代码如下: <%@ page language=“java” contentType=“text/html; charset=utf-8” pageEncoding=“utf-8”%> <%@ taglib uri=“http://java.sun.com/jsp/jstl/core” prefix=“c”%> href=“https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css”> <% pageContext.setAttribute(“App_Path”, request.getContextPath()); %> 致一科技@ style=“font-family: STXingkai; color: graytext;”>Zhiyi Technology 新增 删除 15.查询_优化完整分页条 ========================================================================== 代码如下: <%@ page language=“java” contentType=“text/html; charset=utf-8” pageEncoding=“utf-8”%> <%@ taglib uri=“http://java.sun.com/jsp/jstl/core” prefix=“c”%> href=“https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css”> <% pageContext.setAttribute(“App_Path”, request.getContextPath()); %> 致一科技@ style=“font-family: STXingkai; color: graytext;”>Zhiyi Technology 新增 删除 16.新增_创建员工——新增模态框 ============================================================================== 具体代码详情如下: <%@ page language=“java” contentType=“text/html; charset=utf-8” pageEncoding=“utf-8”%> <%@ taglib uri=“http://java.sun.com/jsp/jstl/core” prefix=“c”%> href=“https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css”> <% pageContext.setAttribute(“App_Path”, request.getContextPath()); %> aria-labelledby=“myModalLabel”> emp_id emp_name gender eamil dept_id 操作
emp_id emp_name gender eamil dept_id 操作
emp_id emp_name gender eamil dept_id 操作
1. 这个模态框是引用bootStrap中的javaScript组件中模态框的案例