Java项目:45 ssm004新生报到系统+jsp(含文档)

项目介绍

技术栈:spring springMVC mybatis mysql

系统角色:管理员,学生

系统功能:个人中心,管理员信息,班级信息,学院信息,专业信息,消息通知,缴费信息,学生管理等

学院管理员:管理所有内容,涵盖了班级,专业,学院,学生,缴费以及宿舍等方面的信息

学院管理员:可以统计缴费信息以及学生报到信息。

宿舍管理员:管理宿舍,查看入住宿舍的学生,管理学生,发布与维护消息通知。

财务管理员:统计缴费信息,增删改学生缴费信息,管理学生和消息通知。

辅导员:统计学生报到信息,管理班级和消息通知。

学生:查询缴费信息,查看所有管理人员发布的消息通知。

环境要求

1.运行环境:最好是java jdk1.8,我们在这个平台上运行的。其他版本理论上也可以。

2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;

3.tomcat环境:Tomcat7.x,8.X,9.x版本均可

4.硬件环境:windows7/8/10 4G内存以上;或者Mac OS;

5.是否Maven项目:是;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven.项目

6.数据库:MySql5.7/8.0等版本均可;

技术栈

运行环境:jdk8 + tomcat9 + mysql5.7 + windows10

服务端技术:Java、Spring、SpringMVC、Mybatis,SSM

使用说明

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

2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;

3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;

运行指导

idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:

http://mtw.so/5MHvZq

源码地址:http://codegym.top

运行截图

文档截图

代码

java 复制代码
package com.score.dao;

import com.score.bean.TStudent;
import java.util.List;
import java.util.Map;

public interface TStudentMapper {
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table t_student
     *
     * @mbggenerated
     */
    int deleteByPrimaryKey(Integer studentNo);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table t_student
     *
     * @mbggenerated
     */
    int insert(TStudent record);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table t_student
     *
     * @mbggenerated
     */
    TStudent selectByPrimaryKey(Integer studentNo);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table t_student
     *
     * @mbggenerated
     */
    List<TStudent> selectAll(TStudent record);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table t_student
     *
     * @mbggenerated
     */
    int updateByPrimaryKey(TStudent record);
    
    /**
     * 查询学生总成绩
     * @param student
     * @return
     */
    Map<String,Object> selectFinalScore(TStudent student);
    
    /**
     * 查询学生账号信息
     * @param record
     * @return
     */
    List<TStudent> selectloginStudent(TStudent student);
    
}
相关推荐
SamDeepThinking2 分钟前
为什么很多人学了Java,还是没真正理解类和对象?
java·后端·面试
逝水无殇9 分钟前
C# 多态性详解
开发语言·后端·c#
逝水无殇10 分钟前
C# 继承(Inheritance)详解
开发语言·后端·c#
多加点辣也没关系17 分钟前
JavaScript|第6章:流程控制语句
开发语言·前端·javascript
zzh___zzh32 分钟前
Spring Boot资源路径与ClassPathResource详解
java
foundbug99937 分钟前
Polar Code 编解码 MATLAB 实现
开发语言·算法·matlab
学渣超41 分钟前
微服务日志智能诊断系统(八) 全链路追踪——request_id驱动的跨服务诊断
java·后端·agent
ACGkaka_43 分钟前
Spring Boot 实战(四十一):集成 BPMN(Flowable+bpmn-js)
java·spring boot·后端
李小小钦44 分钟前
D. Storming Arasaka(Codeforces 2238)
c语言·开发语言·数据结构·c++·算法
W是笔名1 小时前
python___容器类型的数据___列表
开发语言·windows·python