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);
    
}
相关推荐
DCTANT15 分钟前
【原创】国产化适配-全量迁移MySQL数据到OpenGauss数据库
java·数据库·spring boot·mysql·opengauss
Touper.24 分钟前
SpringBoot -- 自动配置原理
java·spring boot·后端
黄雪超34 分钟前
JVM——函数式语法糖:如何使用Function、Stream来编写函数式程序?
java·开发语言·jvm
ThetaarSofVenice41 分钟前
对象的finalization机制Test
java·开发语言·jvm
思则变1 小时前
[Pytest] [Part 2]增加 log功能
开发语言·python·pytest
lijingguang1 小时前
在C#中根据URL下载文件并保存到本地,可以使用以下方法(推荐使用现代异步方式)
开发语言·c#
¥-oriented2 小时前
【C#中路径相关的概念】
开发语言·c#
CoderCodingNo2 小时前
【GESP】C++四级考试大纲知识点梳理, (7) 排序算法基本概念
开发语言·c++·排序算法
恋猫de小郭2 小时前
Meta 宣布加入 Kotlin 基金会,将为 Kotlin 和 Android 生态提供全新支持
android·开发语言·ios·kotlin
望获linux2 小时前
【实时Linux实战系列】CPU 隔离与屏蔽技术
java·linux·运维·服务器·操作系统·开源软件·嵌入式软件