基于SSM架构实现学生信息管理系统

项目简介

本项目是一个基于SSM(Spring+SpringMVC+MyBatis)框架搭建的学生信息管理系统,实现了对学生、用户等信息的增删改查功能,以及登录、分页等功能。本项目采用了三层架构,分为entity层、service层、dao层和controller层,使用了Maven进行项目管理,使用了MySQL作为数据库。

项目功能

本项目主要有以下几个功能模块:

  • 登录模块:用户可以输入用户名和密码进行登录,如果用户名或密码错误,会提示相应的错误信息。

  • 学生管理模块:管理员可以对学生进行增删改查操作,可以根据学号或姓名或所属班级进行模糊查询,可以批量删除学生,可以修改学生的姓名、性别、年龄。

项目结构

基于SSM架构实现学生信息管理系统_第1张图片

项目技术

本项目主要使用了以下技术:

  • SSM框架:使用Spring作为容器管理各个组件,使用SpringMVC处理请求转发和视图渲染,使用MyBatis作为持久层框架操作数据库。

  • Maven:使用Maven作为项目管理工具,管理项目的依赖和构建。

  • MySQL:使用MySQL作为关系型数据库存储数据。

  • JSP+Servlet+JSTL+EL:使用JSP作为视图层技术展示页面,使用Servlet作为控制器接收请求和响应结果,使用JSTL和EL标签简化页面编写。

  • PageHelper:使用PageHelper插件实现分页功能。

  • Spring事务管理:使用Spring注解式事务管理实现事务控制。

  • SpringMVC拦截器:使用SpringMVC拦截器实现用户登录状态的判断和拦截。

  • SpringMVC全局异常处理:使用SpringMVC的@ControllerAdvice注解实现全局异常处理。

项目截图

以下是本项目的部分截图:

登录页面

学生管理页面

添加页面

修改页面

基于SSM架构实现学生信息管理系统_第2张图片

项目源码

部分源码:

package com.stu.controller;

import com.stu.entity.Student;
import com.stu.service.StudentService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

@Controller // 这个注解表示这个类是一个控制器
public class StudentController {
    @Autowired // 这个注解将StudentService对象注入到这个类中
    private StudentService studentService;
    //列表
    @RequestMapping("/list") // 这个注解将/list URL映射到这个方法
    public String list(Model model, @RequestParam(defaultValue = "1")Integer pageNum
            , @RequestParam(defaultValue = "5")Integer pageSize
            , String name, String sex, Integer age){
        HashMap map = new HashMap(); // 创建一个map来存储查询参数
        map.put("name",name); // 将name参数放入map中
        map.put("sex",sex); // 将sex参数放入map中
        map.put("age",age); // 将age参数放入map中
        map.put("pageSize",pageSize); // 将pageSize参数放入map中
        PageHelper.startPage(pageNum,pageSize); // 使用PageHelper来设置分页信息
        List list = studentService.list(map); // 调用studentService来获取符合查询参数的学生列表
        PageInfo pageInfo = new PageInfo(list); // 创建一个PageInfo对象来存储分页信息和学生列表
        model.addAttribute("list", list); // 将学生列表添加到model中
        model.addAttribute("pageInfo", pageInfo); // 将pageInfo对象添加到model中
        model.addAttribute("map", map); // 将查询参数的map添加到model中
        return "/list"; // 返回要显示学生列表的视图的名称
    }

    //删除
    @ResponseBody // 这个注解表示这个方法返回一个JSON对象作为响应体
    @RequestMapping("/delete") // 这个注解将/delete URL映射到这个方法
    public Object delete(String ids){
        int i=studentService.delete(ids); // 调用studentService来删除给定id的学生
        return i; // 返回删除操作影响的行数
    }

    //点击按钮,跳转到添加页面
    @RequestMapping("/toadd") // 这个注解将/toadd URL映射到这个方法
    public String toadd(){
        return "add"; // 返回要显示添加新学生的表单的视图的名称
    }

    //添加
    @ResponseBody // 这个注解表示这个方法返回一个JSON对象作为响应体
    @RequestMapping("/add") // 这个注解将/add URL映射到这个方法
    public Object add(Student student){
        int i=studentService.add(student); // 调用studentService来添加一个新学生,使用给定的信息
        return i; // 返回插入操作影响的行数
    }

    //点击按钮,跳转到修改页面
    @RequestMapping("/toupdate") // 这个注解将/toupdate URL映射到这个方法
    public String toupdate(Integer num, Model model){
        Student student = studentService.getByNum(num); // 调用studentService来根据num属性获取一个学生
        model.addAttribute("student", student); // 将学生对象添加到model中
        return "update"; // 返回要显示更新已有学生的表单的视图的名称
    }

    //修改
    @ResponseBody // 这个注解表示这个方法返回一个JSON对象作为响应体
    @RequestMapping("/update") // 这个注解将/update URL映射到这个方法
    public Object update(Student student){
        int i=studentService.update(student); // 调用studentService来更新一个已有学生,使用给定的信息
        return i; // 返回更新操作影响的行数
    }

}






    
    
    
    
        DELETE from student where num in(${ids})
    
    
    
        INSERT INTO `student`.`student`
            (`num`, `name`, `sex`, `age`) VALUES
            (0, #{name}, #{sex}, #{age});
    

    
    
    update student set name=#{name},sex=#{sex},age=#{age} where num=#{num}


    
    

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    学生列表
    
    
    


学生信息管理系统

姓名: 性别: 年龄: 每页显示:
请选择 编号 姓名 性别 年龄 操作
${a.num} ${a.name} ${a.sex} ${a.age}
当前第${pageInfo.pageNum}页,共${pageInfo.pages}页

项目源码链接:UNABLEEEEE/StudentManagment-3.0-SSM- (github.com)

你可能感兴趣的:(java,mvc,spring,css)