package com.iflytak.controller;
import com.iflytak.pojo.Student;
import com.iflytak.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.ArrayList;
import java.util.List;
@Controller
@RequestMapping("/student")
public class StudentController {
@Autowired
private StudentService studentService;
//查询全部学生
@RequestMapping("/allStudent")
public String list(Model model){
List<Student> list = studentService.queryAllStudent();
model.addAttribute("list",list);
return "allStudent";
}
//跳转到增加页面
@RequestMapping("/toAddStudent")
public String toAddpaper(){
return "addStudent";
}
//添加学生
@RequestMapping("/addStudent")
@ResponseBody
public String addStudent(Student student){
System.out.println("addStudent->"+student);
studentService.addStudent(student);
return "成功";//重定向
}
//跳转到修改
@RequestMapping("/toUpdate")
public String toUpdatePaper(int id,Model model){
Student student = studentService.queryStudentByid(id);
model.addAttribute("Qstudent",student);
return "updataStudent";
}
//修改
@RequestMapping("/updataStudent")
public String updataStudent(Student student){
System.out.println("updataStudent"+student);
studentService.updataStudent(student);
return "redirect:/student/allStudent";
}
//删除
@RequestMapping("/deleteStudent/{stuId}")
public String deleteStudent(@PathVariable("stuId") int id){
studentService.deleteStudentById(id);
return "redirect:/student/allStudent";
}
//查询
@RequestMapping("/queryStudent")
public String queryStudent(String queryStudentName,Model model){
Student student = studentService.queryStudentByName(queryStudentName);
List<Student> list=new ArrayList<Student>();
list.add(student);
if (student==null){
list=studentService.queryAllStudent();
model.addAttribute("error","信息为空或查无此人");
}
model.addAttribute("list",list);
return "allStudent";
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
基于Javaweb的SSM框架的学生信息管理系统(源码+数据库).zip
共125个文件
jar:42个
xml:36个
class:16个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 2 下载量 141 浏览量
2022-12-08
21:02:44
上传
评论 3
收藏 24.61MB ZIP 举报
温馨提示
基于Java web的SSM框架的学生信息管理系统(源码+数据库).zip主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的Java学习者。也可作为课程设计、期末大作业 包含:项目源码、数据库脚本、软件工具、项目说明等,该项目可以直接作为毕设使用。 项目都经过严格调试,确保可以运行! 技术实现 后台框架:SSM 数据库:MySQL 开发环境:JDK、IDEA 基于Java web的SSM框架的学生信息管理系统(源码+数据库).zip主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的Java学习者。也可作为课程设计、期末大作业 包含:项目源码、数据库脚本、软件工具、项目说明等,该项目可以直接作为毕设使用。 项目都经过严格调试,确保可以运行! 技术实现 后台框架:SSM 数据库:MySQL 开发环境:JDK、IDEA 基于Java web的SSM框架的学生信息管理系统(源码+数据库).zip 基于Java web的SSM框架的学生信息管理系统(源码+数据库).zip 基于Java web的SSM框架的学生信息管理系统(源码+数据库).zip 基于Java
资源推荐
资源详情
资源评论
收起资源包目录
基于Javaweb的SSM框架的学生信息管理系统(源码+数据库).zip (125个子文件)
Student.class 4KB
Student.class 4KB
Student.class 4KB
StudentController.class 3KB
StudentController.class 3KB
StudentServiceImpl.class 2KB
StudentServiceImpl.class 2KB
StudentServiceImpl.class 1KB
StudentController.class 1KB
StudentMapper.class 643B
StudentMapper.class 643B
StudentMapper.class 543B
StudentService.class 525B
StudentService.class 525B
StudentService.class 416B
mytest.class 243B
.gitignore 182B
ssm.iml 620B
lombok-1.18.20.jar 1.84MB
lombok-1.18.20.jar 1.84MB
mybatis-3.5.2.jar 1.62MB
mybatis-3.5.2.jar 1.62MB
spring-web-5.3.9.jar 1.53MB
spring-web-5.3.9.jar 1.53MB
spring-core-5.3.9.jar 1.39MB
spring-core-5.3.9.jar 1.39MB
spring-context-5.3.9.jar 1.19MB
spring-context-5.3.9.jar 1.19MB
mysql-connector-java-5.1.47.jar 984KB
mysql-connector-java-5.1.47.jar 984KB
spring-webmvc-5.3.9.jar 984KB
spring-webmvc-5.3.9.jar 984KB
spring-beans-5.3.9.jar 680KB
spring-beans-5.3.9.jar 680KB
mchange-commons-java-0.2.11.jar 592KB
mchange-commons-java-0.2.11.jar 592KB
c3p0-0.9.5.2.jar 486KB
c3p0-0.9.5.2.jar 486KB
jstl-1.2.jar 405KB
jstl-1.2.jar 405KB
spring-jdbc-5.1.9.RELEASE.jar 395KB
spring-jdbc-5.1.9.RELEASE.jar 395KB
spring-aop-5.3.9.jar 366KB
spring-aop-5.3.9.jar 366KB
junit-4.12.jar 308KB
junit-4.12.jar 308KB
spring-expression-5.3.9.jar 276KB
spring-expression-5.3.9.jar 276KB
spring-tx-5.1.9.RELEASE.jar 250KB
spring-tx-5.1.9.RELEASE.jar 250KB
servlet-api-2.5.jar 103KB
servlet-api-2.5.jar 103KB
mybatis-spring-2.0.2.jar 66KB
mybatis-spring-2.0.2.jar 66KB
jsp-api-2.2.jar 49KB
jsp-api-2.2.jar 49KB
hamcrest-core-1.3.jar 44KB
hamcrest-core-1.3.jar 44KB
spring-jcl-5.3.9.jar 23KB
spring-jcl-5.3.9.jar 23KB
StudentController.java 2KB
StudentServiceImpl.java 1KB
StudentService.java 584B
StudentMapper.java 535B
Student.java 346B
mytest.java 30B
updataStudent.jsp 4KB
updataStudent.jsp 4KB
allStudent.jsp 4KB
allStudent.jsp 4KB
index.jsp 4KB
index.jsp 4KB
addStudent.jsp 4KB
addStudent.jsp 4KB
allStudent.jsp 288B
index.jsp 224B
inputFiles.lst 390B
createdFiles.lst 200B
MANIFEST.MF 97B
MANIFEST.MF 97B
imgQQ截图20211129085736.png 97KB
imgQQ截图20211129085757.png 96KB
imgQQ截图20211129085843.png 47KB
imgQQ截图20211129085832.png 43KB
database.properties 222B
database.properties 222B
database.properties 222B
database.properties 167B
student.sql 2KB
uiDesigner.xml 9KB
pom.xml 4KB
ssm_war_exploded.xml 3KB
spring-dao.xml 2KB
spring-dao.xml 2KB
spring-dao.xml 2KB
spring-dao.xml 2KB
web.xml 2KB
web.xml 2KB
StudentMapper.xml 2KB
StudentMapper.xml 2KB
共 125 条
- 1
- 2
资源评论
- sujia000002023-12-05资源内容详实,描述详尽,解决了我的问题,受益匪浅,学到了。
- kk好菜呀2023-04-19果断支持这个资源,资源解决了当前遇到的问题,给了新的灵感,感谢分享~
程序员张小妍
- 粉丝: 1w+
- 资源: 3252
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- YOLO-yolo资源
- 适用于 Java 项目的 Squash 客户端库 .zip
- 适用于 Java 的 Chef 食谱.zip
- Simulink仿真快速入门与实践基础教程
- js-leetcode题解之179-largest-number.js
- js-leetcode题解之174-dungeon-game.js
- Matlab工具箱使用与实践基础教程
- js-leetcode题解之173-binary-search-tree-iterator.js
- js-leetcode题解之172-factorial-trailing-zeroes.js
- js-leetcode题解之171-excel-sheet-column-number.js
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功