package com.demo.controller;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.demo.bean.Student;
import com.demo.service.StudentService;
/**
* 控制层
* @author ming
*
*/
@Controller
@RequestMapping("/student")
public class StudentController {
@Autowired
private StudentService studentService;
//首页admin跳转
@RequestMapping(value = "/admin")
public String admin(){
return "admin";
}
/**
* 分页获取学生通讯录
* @param page 页码
* @param limit 每页大小
* @param studentName
* @return
*/
@RequestMapping(value = "/getAll", method = RequestMethod.GET)
@ResponseBody
public Map<String,Object> getAll(
@RequestParam(value = "page", required = false) String page,
@RequestParam(value = "limit", required = false) String limit,
@RequestParam(value = "studentName", required = false) String studentName
) {
Map<String,Object> map=new HashMap<String,Object>();
//分页显示第一个记录
int first =(Integer.parseInt(page)-1)*10;
//创建学生List
List<Student> students = new ArrayList<>();
//如果学生姓名不为空
if(studentName != null){
students = Arrays.asList(studentService.selectStudentName(studentName));
}else{
//分页查找全部学生通讯录
students = studentService.selectAll(first,Integer.parseInt(limit));
}
map.put("data", students);
map.put("count",students.size());
map.put("code", 0);
map.put("msg", "");
//return ajaxJson.add("users", users);
return map;
}
/**
* 根据学生id进行删除
* @param id
*/
@RequestMapping("/delStudent")
public void delectByID(@RequestParam(value = "id", required = false) String id){
studentService.deleteByPrimaryKey(Integer.parseInt(id));
}
/**
* 更新或者新增学生,如果学生id存在就更新学生否则新增
* @param student
*/
@RequestMapping(value="/addOrUpdate", method = RequestMethod.POST)
public void addOrUpdate(Student student){
//学生id 不为空
if (student.getId() != null){
studentService.updateByPrimaryKey(student);
}else {
studentService.insert(student);
}
}
/**
* 跳转添加学生页面
* @param request
* @return
*/
@RequestMapping(value = "/addStudent", method = RequestMethod.GET)
public String addStudent(HttpServletRequest request){
return "addStudent";
}
/*
* 跳转 编辑页面
*/
@RequestMapping(value = "/editStudent", method = RequestMethod.GET)
public String editStudent(@RequestParam(value = "id", required = false) String id,HttpServletRequest request){
//获取学生通讯录对象
Student student = studentService.selectByPrimaryKey(Integer.parseInt(id));
//保存在request中
request.setAttribute("student",student);
return "editStudent";
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
SSM(Spring + Spring MVC + MyBatis)是一种流行的Java Web开发框架,它结合了Spring、Spring MVC和MyBatis三个框架,用于构建高效、可扩展的Web应用程序。 本资源是本人独自封装的SSM框架,开箱即用,直接可以在上面写自己的业务带代码,免去的SSM的配置。
资源推荐
资源详情
资源评论
收起资源包目录
Spring + Spring MVC + MyBatis+JSP模板工程 (164个子文件)
StudentController.class 4KB
Student.class 2KB
StudentServiceImpl.class 2KB
StudentMapper.class 798B
StudentService.class 588B
.classpath 1KB
org.eclipse.wst.common.component 772B
org.eclipse.wst.jsdt.ui.superType.container 49B
bootstrap.css 143KB
bootstrap.min.css 118KB
layui.css 79KB
bootstrap-theme.css 26KB
bootstrap-theme.min.css 23KB
layer.css 14KB
layui.mobile.css 10KB
laydate.css 7KB
code.css 1KB
iconfont.eot 40KB
glyphicons-halflings-regular.eot 20KB
59.gif 10KB
22.gif 10KB
24.gif 8KB
13.gif 7KB
16.gif 7KB
39.gif 6KB
64.gif 6KB
63.gif 6KB
50.gif 6KB
loading-0.gif 6KB
4.gif 6KB
1.gif 5KB
42.gif 5KB
71.gif 5KB
21.gif 5KB
20.gif 5KB
29.gif 5KB
70.gif 4KB
5.gif 4KB
17.gif 4KB
27.gif 4KB
9.gif 4KB
44.gif 4KB
11.gif 4KB
8.gif 4KB
3.gif 4KB
23.gif 4KB
34.gif 4KB
41.gif 4KB
38.gif 4KB
65.gif 3KB
32.gif 3KB
45.gif 3KB
7.gif 3KB
12.gif 3KB
26.gif 3KB
60.gif 3KB
2.gif 3KB
40.gif 3KB
25.gif 3KB
19.gif 3KB
66.gif 3KB
18.gif 3KB
46.gif 3KB
10.gif 3KB
28.gif 3KB
51.gif 3KB
57.gif 3KB
67.gif 3KB
0.gif 3KB
48.gif 3KB
43.gif 3KB
30.gif 2KB
61.gif 2KB
33.gif 2KB
69.gif 2KB
14.gif 2KB
47.gif 2KB
36.gif 2KB
49.gif 2KB
58.gif 2KB
6.gif 2KB
54.gif 2KB
53.gif 2KB
56.gif 2KB
62.gif 2KB
31.gif 2KB
55.gif 2KB
35.gif 2KB
15.gif 2KB
loading-2.gif 2KB
37.gif 1KB
68.gif 1KB
52.gif 777B
loading-1.gif 701B
StudentController.java 3KB
Student.java 2KB
StudentServiceImpl.java 1KB
StudentMapper.java 601B
StudentService.java 466B
layui.all.js 255KB
共 164 条
- 1
- 2
资源评论
小明爱吃火锅
- 粉丝: 2999
- 资源: 47
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于javaweb的网上拍卖系统,采用Spring + SpringMvc+Mysql + Hibernate+ JSP技术
- polygon-mumbai
- Chrome代理 switchyOmega
- GVC-全球价值链参与地位指数,基于ICIO表,(Wang等 2017a)计算方法
- 易语言ADS指纹浏览器管理工具
- 易语言奇易模块5.3.6
- cad定制家具平面图工具-(FG)门板覆盖柜体
- asp.net 原生js代码及HTML实现多文件分片上传功能(自定义上传文件大小、文件上传类型)
- whl@pip install pyaudio ERROR: Failed building wheel for pyaudio
- Constantsfd密钥和权限集合.kt
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功