Java项目:SSH学生学籍管理系统及教务管理系统

news/2025/1/31 6:46:45/

作者主页:源码空间站2022

 简介:Java领域优质创作者、Java项目、学习资料、技术互助

文末获取源码

项目介绍

本系统包含管理员、教师、学生三种角色;

管理员角色包含以下功能:

管理员登录,学科管理,班级管理,教师管理,学籍信息管理,课表管理,身体素质管理,教务公告管理等功能。

教师角色包含以下功能:
教师登录,查看教务公告,成绩管理,查看学籍信息,查看课表,查看身体素质信息,成绩查询,修改密码等功能。

学生角色包含以下功能:
学生登录,查看教务公告等功能。

由于本程序规模不大,可供课程设计,毕业设计学习演示之用

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可
4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS;

5.数据库:MySql 5.7版本;

6.是否Maven项目:否;

技术栈

1. 后端:mysql+Spring+hibernate+spring mcv

2. 前端:JSP+CSS+JavaScript+jQuery

使用说明

1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;

2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven;

若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行;

3. 将项目中jdbc.properties配置文件中的数据库配置改为自己的配置;
4. 运行项目,输入localhost:8080/ 登录
管理员账号/密码:admin/111111
学生账号/密码:101/111111

教师账号/密码:js12/111111

运行截图

管理员角色

教师角色界面

学生角色界面

相关代码 

教室管理控制器

@Controller("classRoomAction")
@Scope("prototype")
public class ClassRoomAction extends BaseAction implements ModelDriven<ClassRoom>{private static final long serialVersionUID = 1L;//==========model==============private ClassRoom classRoom;@Overridepublic ClassRoom getModel() {if(classRoom==null) classRoom = new ClassRoom();return classRoom;	}//==========model==============/*** 依赖注入 start dao/service/===*/@Autowiredprivate ClassRoomService classRoomService;@Autowiredprivate TeacherClassService teacherClassService;//依赖注入 end  dao/service/===//-------------------------华丽分割线---------------------------------------------//============自定义参数start=============//============自定义参数end=============//-------------------------华丽分割线---------------------------------------------//============文件上传start=======================================================private File file;//提交过来的file的名字private String fileFileName;//提交过来的file的MIME类型private String fileContentType;public File getFile() {return file;}public void setFile(File file) {this.file = file;}public String getFileFileName() {return fileFileName;}public void setFileFileName(String fileFileName) {this.fileFileName = fileFileName;}public String getFileContentType() {return fileContentType;}public void setFileContentType(String fileContentType) {this.fileContentType = fileContentType;}//============文件上传end=========================================================public String jsonAction() {// dataMap中的数据将会被Struts2转换成JSON字符串,所以这里要先清空其中的数据jsonMap.clear();jsonMap.put("success", true);return JSON_TYPE;}//-------------------------华丽分割线---------------------------------------------////=============公=======共=======方=======法==========区=========start============///*** 列表分页查询*/public String classRoom(){Map<String,Object> alias = new HashMap<String,Object>();StringBuffer sb = new StringBuffer();sb = sb.append("from ClassRoom where 1=1 and isDelete = 0 ");if(classRoom!=null && classRoom.getName() !=null && !"".equals(classRoom.getName())){sb.append("  and name like :realName ");alias.put("realName", "%" +classRoom.getName()+ "%" );}sb = sb.append("order by id desc");Pager<ClassRoom> pagers = classRoomService.findByAlias(sb.toString(),alias);ActionContext.getContext().put("pagers", pagers);ActionContext.getContext().put("Obj", classRoom);return SUCCESS;}public String xkRoom(){Map<String,Object> alias = new HashMap<String,Object>();StringBuffer sb = new StringBuffer();sb = sb.append("from ClassRoom where 1=1 and isDelete = 0 ");if(classRoom!=null && classRoom.getName() !=null && !"".equals(classRoom.getName())){sb.append("  and name like :realName ");alias.put("realName", "%" +classRoom.getName()+ "%" );}sb = sb.append("order by id desc");Pager<ClassRoom> pagers = classRoomService.findByAlias(sb.toString(),alias);ActionContext.getContext().put("pagers", pagers);ActionContext.getContext().put("Obj", classRoom);return SUCCESS;}public String xkRoom2(){Map<String,Object> alias = new HashMap<String,Object>();StringBuffer sb = new StringBuffer();sb = sb.append("from ClassRoom where 1=1 and isDelete = 0 ");if(classRoom!=null && classRoom.getName() !=null && !"".equals(classRoom.getName())){sb.append("  and name like :realName ");alias.put("realName", "%" +classRoom.getName()+ "%" );}sb = sb.append("order by id desc");Pager<ClassRoom> pagers = classRoomService.findByAlias(sb.toString(),alias);ActionContext.getContext().put("pagers", pagers);ActionContext.getContext().put("Obj", classRoom);return SUCCESS;}public String cjRoom(){List<ClassRoom>list = new ArrayList<ClassRoom>();Integer loginId = UserUtils.getLoginId();List<TeacherClass> checkList = teacherClassService.listByAlias("from TeacherClass where teacher.id="+loginId, null);if(!isEmpty(checkList)){for (TeacherClass t :checkList) {list.add(t.getClassroom());}}ActionContext.getContext().put("pagers", list);ActionContext.getContext().put("Obj", classRoom);return SUCCESS;}/*** 跳转到添加页面* @return*/public String add(){return SUCCESS;}/*** 执行添加* @return*/public String exAdd(){classRoom.setIsDelete(0);classRoomService.save(classRoom);ActionContext.getContext().put("url", "/classRoom_classRoom.do");return "redirect";}/*** 查看详情页面* @return*/public String view(){ClassRoom n = classRoomService.getById(classRoom.getId());ActionContext.getContext().put("Obj", n);return SUCCESS;}/*** 跳转修改页面* @return*/public String update(){ClassRoom n = classRoomService.getById(classRoom.getId());ActionContext.getContext().put("Obj", n);return SUCCESS;}/*** 执行修改* @return*/public String exUpdate(){ClassRoom n = classRoomService.getById(classRoom.getId());n.setName(classRoom.getName());n.setNj(classRoom.getNj());classRoomService.update(n);ActionContext.getContext().put("url", "/classRoom_classRoom.do");return "redirect";}/*** 删除* @return*/public String delete(){ClassRoom n = classRoomService.getById(classRoom.getId());n.setIsDelete(1);classRoomService.update(n);ActionContext.getContext().put("url", "/classRoom_classRoom.do");return "redirect";}//=============公=======共=======方=======法==========区=========end============////-------------------------华丽分割线---------------------------------------------////=============自=======定=======义=========方=======法==========区=========start============////=============自=======定=======义=========方=======法==========区=========end============//}

 如果也想学习本系统,下面领取。关注并回复:098ssh


http://www.ppmy.cn/news/638861.html

相关文章

教务管理系统学生端

while(1){printf("请输入你所需要的操作编码&#xff1a;\n");printf("0: 返回主页面\n");printf("1: 查看成绩\n");printf("2: 修改密码\n");printf("3: 查找班级分数\n");printf("4: 查找学科 \n");printf(&quo…

数据库(教务管理系统)

1.2需求分析 1.2.1 功能需求 系统的用户有三个不同的角色&#xff0c;分别是教务教师&#xff0c;管理人员&#xff0c;学生&#xff0c;角色不同&#xff0c;需求不同。通过分析&#xff0c;各用户的需求如下&#xff1a; 1.2.1.1 教师用户需求 教师可以通过系统录入成绩&…

教务查询系统简介

教务查询系统简介 项目核心代码展示 service层如下&#xff1a; Teacher老师Service层&#xff1a; public interface TeacherService {//根据id更新老师信息void updateById(Integer id, TeacherCustom teacherCustom) throws Exception;//根据id删除老师信息void removeB…

教务管理系统

java编写的简单的教务系统&#xff0c;数据库采用mysql。主要功能是学生选课、教师成绩录入、管理员管理老师和学生等。 文件&#xff1a;n459.com/file/25127180-476895768 以下内容无关&#xff1a; -------------------------------------------分割线------------------…

教务系统一键评教

利用浏览器的开发者模式实现“一键评教”&#xff0c;本教程针对金智教务系统 步骤 1、打开教务系统的评教页面。 2、按下键盘快捷键 F12&#xff0c;或者点击鼠标右键打开浏览器的开发者工具&#xff0c;然后选择控制台&#xff08;Console&#xff09;。 3、复制以下 Java…

【课程设计】教务信息管理系统

大学第一个设计&#xff0c;代码量3700行,本课设仅供参考 1 【课程设计】教务信息管理系统 Time Limit:1000MS Memory Limit:65535K 题型: 人工评判题 语言: 无限制 描述 设计一个教务信息管理系统&#xff0c;该程序具有以下功能&#xff1a; &#xff08;1&#xff09;录入如…

Java教务管理系统

介绍&#xff1a; 本项目采用MVC框架&#xff0c;对代码分层&#xff0c;分为Dao&#xff0c;Pojo&#xff0c;Service&#xff0c;Utils&#xff0c;View, swing的视图设计上我是参考了其他人的设置&#xff0c;功能上全由个人编写,第一版的实现可能会由有很多不足的地方&…

高校教学管理信息系统/教学管理系统

摘 要 21世纪的今天&#xff0c;随着社会的不断发展与进步&#xff0c;人们对于信息科学化的认识&#xff0c;已由低层次向高层次发展&#xff0c;由原来的感性认识向理性认识提高&#xff0c;管理工作的重要性已逐渐被人们所认识&#xff0c;科学化的管理&#xff0c;使信息存…