首页 Java N081基于SSM/Java的高校校园教务管理系统的设计与实现
N081基于SSM/Java的高校校园教务管理系统的设计与实现
作品编号:1096
关注人气:1822
文件包括:设计源码+数据库+论文+PPT
设计大小:16.19 M
开发语言:Java
开发数据库:MySQL
开发环境:Eclipse+Tomcat8+JDK1.8
原价:900元
现价:90元
下载说明

本作品里面包括调试教程和开发工具和软件,可自行下载根据教程进行调试!

如需技术协助调试,本站收取50元作品调试费!点此申请调试

如果上面没有找到适合您需求的作品,您可联系我们为您定做,定做的作品完全按照您的功能需求来做,并且后期三包,包调试,包讲解,包修改直到通过为止。

  • 作品介绍
  • 项目目录
  • 论文目录
  • 论文预览

系统的设计与实现

 

3.1 模块功能介绍

根据对一些学生和管理者的需求调查,将他们的需求汇总划分为以下的几个部分。

3.1.1学生与教师的共同功能

(1)登录模块:根据权限不同而进入不同的页面。

(2)注销模块:退出登录。

(3)密码模块:用户登录成功后可以修改自己的密码。

3.1.2学生的功能

(1)学生信息浏览模块,学生可以浏览自己的相关个人信息,确保录入无误。

(2)学生成绩浏览模块,学生可以浏览自己所选修课程的成绩信息。

(3)物品交易模块:学生可以浏览和发布商品的信息,供学生彼此间进行交易。

(4)文件下载模块:学生可以下载共享文件区的文件。

(5)查看公告模块:管理人员发布公告,学生可以看到。

3.1.3管理人员的功能

(1)学生信息管理:实现对学生信息的管理,包括增加学生,删除和批量删除,修改学生的信息,复杂条件筛选查询等操作。

(2)班级信息管理:实现了对班级信息的管理,包括增加班级,删除班级,修改某一班级的信息,比如班主任等,条件过滤查询等操作。

(3)课程信息管理:实现了对课程信息的管理,包括课程的增加,删除课程,修改课程的信息,条件过滤查询等操作。

(4)学生成绩管理:实现了对学生成绩的管理。可以增加成绩信息,修改成绩信息,删除成绩信息,还有支持按照课程、学生,成绩范围等条件进行筛选。

(5)文件管理模块:管理人员可上传课件、教程等文件供学生下载。

(6)用户管理模块:分配和删除登录账号(超级管理员权限)。

(7)登录日志模块:可以查看用户的登录日志。

(8)发布公告模块:可以发布公告,用来通知一些事宜。


N081基于SSM的高校校园教务管理系统的设计与实现N081基于SSM的高校校园教务管理系统的设计与实现N081基于SSM的高校校园教务管理系统的设计与实现N081基于SSM的高校校园教务管理系统的设计与实现N081基于SSM的高校校园教务管理系统的设计与实现N081基于SSM的高校校园教务管理系统的设计与实现N081基于SSM的高校校园教务管理系统的设计与实现
卷 软件 的文件夹 PATH 列表
卷序列号为 0008-B552
D:\TEST\源码
├─毕设论文
│      1462141528_秦国锋_基于JavaWeb的高校校园管理系统的设计与实现.docx
│      
├─相关文档
│      秦国锋-1462141528-相关文档1任务书.doc
│      秦国锋-1462141528-相关文档3开题报告.doc
│      秦国锋-1462141528-相关文档4期中小结.docx
│      秦国锋-1462141528-相关文档5成绩表.doc
│      秦国锋-1462141528-相关文档6评审答辩表.doc
│      秦国锋-1462141528-相关文档7答辩记录.doc
│      
├─答辩PPT
│      答辩-秦国锋-1462141528.pptx
│      
└─软件系统及安装使用说明
    │  db_sm.sql
    │  软件说明书.docx
    │  
    └─程序代码(eclispe)
        └─教务管理系统
            │  .classpath
            │  .project
            │  
            ├─.settings
            │      .jsdtscope
            │      org.eclipse.jdt.core.prefs
            │      org.eclipse.wst.common.component
            │      org.eclipse.wst.common.project.facet.core.xml
            │      org.eclipse.wst.jsdt.ui.superType.container
            │      org.eclipse.wst.jsdt.ui.superType.name
            │      
            ├─build
            │  └─classes
            │      │  applicationContext.xml
            │      │  log4j.properties
            │      │  mybatis-config.xml
            │      │  
            │      └─com
            │          └─qgf
            │              ├─bean
            │              │      Clazz.class
            │              │      Condition.class
            │              │      Course.class
            │              │      Goods.class
            │              │      LoginInfo.class
            │              │      Notice.class
            │              │      Page.class
            │              │      SC.class
            │              │      Student.class
            │              │      User.class
            │              │      UserGoods.class
            │              │      
            │              ├─controller
            │              │      ClazzController.class
            │              │      CourseController.class
            │              │      FileController.class
            │              │      GoodsController.class
            │              │      LoginController.class
            │              │      LoginInfoController.class
            │              │      NoticeController.class
            │              │      RouteController.class
            │              │      SCController.class
            │              │      StudentController.class
            │              │      UserController.class
            │              │      ValidateCodeController.class
            │              │      
            │              ├─dao
            │              │      ClazzDao.class
            │              │      CourseDao.class
            │              │      GoodsDao.class
            │              │      LoginInfoDao.class
            │              │      NoticeDao.class
            │              │      SCDao.class
            │              │      StudentDao.class
            │              │      UserDao.class
            │              │      
            │              ├─Interceptor
            │              │      LoginInterceptor.class
            │              │      
            │              ├─mapper
            │              │      ClazzMapper.class
            │              │      ClazzMapper.xml
            │              │      CourseMapper.class
            │              │      CourseMapper.xml
            │              │      GoodsMapper.class
            │              │      GoodsMapper.xml
            │              │      LoginInfoMapper.class
            │              │      LoginInfoMapper.xml
            │              │      NoticeMapper.class
            │              │      NoticeMapper.xml
            │              │      SCMapper.class
            │              │      SCMapper.xml
            │              │      StudentMapper.class
            │              │      StudentMapper.xml
            │              │      UserMapper.class
            │              │      UserMapper.xml
            │              │      
            │              ├─services
            │              │      ClazzService.class
            │              │      CourseService.class
            │              │      GoodsService.class
            │              │      LoginInfoService.class
            │              │      NoticeService.class
            │              │      SCService.class
            │              │      StudentService.class
            │              │      UserService.class
            │              │      
            │              └─utils
            │                      MyMD5.class
            │                      
            ├─src
            │  │  applicationContext.xml
            │  │  log4j.properties
            │  │  mybatis-config.xml
            │  │  
            │  └─com
            │      └─qgf
            │          ├─bean
            │          │      Clazz.java
            │          │      Condition.java
            │          │      Course.java
            │          │      Goods.java
            │          │      LoginInfo.java
            │          │      Notice.java
            │          │      Page.java
            │          │      SC.java
            │          │      Student.java
            │          │      User.java
            │          │      UserGoods.java
            │          │      
            │          ├─controller
            │          │      ClazzController.java
            │          │      CourseController.java
            │          │      FileController.java
            │          │      GoodsController.java
            │          │      LoginController.java
            │          │      LoginInfoController.java
            │          │      NoticeController.java
            │          │      RouteController.java
            │          │      SCController.java
            │          │      StudentController.java
            │          │      UserController.java
            │          │      ValidateCodeController.java
            │          │      
            │          ├─dao
            │          │      ClazzDao.java
            │          │      CourseDao.java
            │          │      GoodsDao.java
            │          │      LoginInfoDao.java
            │          │      NoticeDao.java
            │          │      SCDao.java
            │          │      StudentDao.java
            │          │      UserDao.java
            │          │      
            │          ├─Interceptor
            │          │      LoginInterceptor.java
            │          │      
            │          ├─mapper
            │          │      ClazzMapper.java
            │          │      ClazzMapper.xml
            │          │      CourseMapper.java
            │          │      CourseMapper.xml
            │          │      GoodsMapper.java
            │          │      GoodsMapper.xml
            │          │      LoginInfoMapper.java
            │          │      LoginInfoMapper.xml
            │          │      NoticeMapper.java
            │          │      NoticeMapper.xml
            │          │      SCMapper.java
            │          │      SCMapper.xml
            │          │      StudentMapper.java
            │          │      StudentMapper.xml
            │          │      UserMapper.java
            │          │      UserMapper.xml
            │          │      
            │          ├─services
            │          │      ClazzService.java
            │          │      CourseService.java
            │          │      GoodsService.java
            │          │      LoginInfoService.java
            │          │      NoticeService.java
            │          │      SCService.java
            │          │      StudentService.java
            │          │      UserService.java
            │          │      
            │          └─utils
            │                  MyMD5.java
            │                  
            └─WebContent
                │  index.jsp
                │  
                ├─css
                │      button.css
                │      comm.css
                │      style.css
                │      
                ├─Echars
                │  └─dist
                │      │  .DS_Store
                │      │  echarts-all.js
                │      │  echarts.js
                │      │  
                │      ├─chart
                │      │      bar.js
                │      │      chord.js
                │      │      eventRiver.js
                │      │      force.js
                │      │      funnel.js
                │      │      gauge.js
                │      │      heatmap.js
                │      │      k.js
                │      │      line.js
                │      │      map.js
                │      │      pie.js
                │      │      radar.js
                │      │      scatter.js
                │      │      tree.js
                │      │      treemap.js
                │      │      venn.js
                │      │      wordCloud.js
                │      │      
                │      └─theme
                │              blue.js
                │              dark.js
                │              default.js
                │              gray.js
                │              green.js
                │              helianthus.js
                │              infographic.js
                │              macarons.js
                │              macarons2.js
                │              mint.js
                │              red.js
                │              roma.js
                │              sakura.js
                │              shine.js
                │              
                ├─goodsimg
                ├─images
                │      find.png
                │      fontbg.jpg
                │      login.jpg
                │      main.jpg
                │      main.png
                │      new.jpg
                │      newN.png
                │      next.png
                │      prev.png
                │      putGoods.png
                │      sx.jpg
                │      
                ├─jquery-easyui-1.5.3
                │  │  changelog.txt
                │  │  easyloader.js
                │  │  jquery.easyui.min.js
                │  │  jquery.easyui.mobile.js
                │  │  jquery.min.js
                │  │  license_freeware.txt
                │  │  readme.txt
                │  │  
                │  ├─demo
                │  │  │  demo.css
                │  │  │  
                │  │  ├─accordion
                │  │  │      actions.html
                │  │  │      ajax.html
                │  │  │      basic.html
                │  │  │      datagrid_data1.json
                │  │  │      expandable.html
                │  │  │      fluid.html
                │  │  │      horizontal.html
                │  │  │      multiple.html
                │  │  │      tools.html
                │  │  │      _content.html
                │  │  │      
                │  │  ├─calendar
                │  │  │      basic.html
                │  │  │      custom.html
                │  │  │      disabledate.html
                │  │  │      firstday.html
                │  │  │      fluid.html
                │  │  │      weeknumber.html
                │  │  │      
                │  │  ├─combo
                │  │  │      animation.html
                │  │  │      basic.html
                │  │  │      
                │  │  ├─combobox
                │  │  │      actions.html
                │  │  │      basic.html
                │  │  │      combobox_data1.json
                │  │  │      combobox_data2.json
                │  │  │      customformat.html
                │  │  │      dynamicdata.html
                │  │  │      fluid.html
                │  │  │      group.html
                │  │  │      icons.html
                │  │  │      itemicon.html
                │  │  │      multiline.html
                │  │  │      multiple.html
                │  │  │      navigation.html
                │  │  │      remotedata.html
                │  │  │      remotejsonp.html
                │  │  │      
                │  │  ├─combogrid
                │  │  │      actions.html
                │  │  │      basic.html
                │  │  │      datagrid_data1.json
                │  │  │      fluid.html
                │  │  │      initvalue.html
                │  │  │      multiple.html
                │  │  │      navigation.html
                │  │  │      setvalue.html
                │  │  │      
                │  │  ├─combotree
                │  │  │      actions.html
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      initvalue.html
                │  │  │      multiple.html
                │  │  │      tree_data1.json
                │  │  │      
                │  │  ├─combotreegrid
                │  │  │      basic.html
                │  │  │      multiple.html
                │  │  │      treegrid_data1.json
                │  │  │      
                │  │  ├─datagrid
                │  │  │      aligncolumns.html
                │  │  │      basic.html
                │  │  │      cacheeditor.html
                │  │  │      cellediting.html
                │  │  │      cellstyle.html
                │  │  │      checkbox.html
                │  │  │      clientpagination.html
                │  │  │      columngroup.html
                │  │  │      complextoolbar.html
                │  │  │      contextmenu.html
                │  │  │      custompager.html
                │  │  │      datagrid_data1.json
                │  │  │      datagrid_data2.json
                │  │  │      fluid.html
                │  │  │      footer.html
                │  │  │      formatcolumns.html
                │  │  │      frozencolumns.html
                │  │  │      frozenrows.html
                │  │  │      mergecells.html
                │  │  │      multisorting.html
                │  │  │      products.json
                │  │  │      rowborder.html
                │  │  │      rowediting.html
                │  │  │      rowstyle.html
                │  │  │      selection.html
                │  │  │      simpletoolbar.html
                │  │  │      transform.html
                │  │  │      
                │  │  ├─datalist
                │  │  │      basic.html
                │  │  │      checkbox.html
                │  │  │      datalist_data1.json
                │  │  │      group.html
                │  │  │      multiselect.html
                │  │  │      remotedata.html
                │  │  │      
                │  │  ├─datebox
                │  │  │      basic.html
                │  │  │      buttons.html
                │  │  │      clone.html
                │  │  │      dateformat.html
                │  │  │      events.html
                │  │  │      fluid.html
                │  │  │      restrict.html
                │  │  │      sharedcalendar.html
                │  │  │      validate.html
                │  │  │      
                │  │  ├─datetimebox
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      initvalue.html
                │  │  │      showseconds.html
                │  │  │      
                │  │  ├─datetimespinner
                │  │  │      basic.html
                │  │  │      clearicon.html
                │  │  │      fluid.html
                │  │  │      format.html
                │  │  │      
                │  │  ├─dialog
                │  │  │      basic.html
                │  │  │      complextoolbar.html
                │  │  │      fluid.html
                │  │  │      toolbarbuttons.html
                │  │  │      
                │  │  ├─draggable
                │  │  │      basic.html
                │  │  │      constrain.html
                │  │  │      snap.html
                │  │  │      
                │  │  ├─droppable
                │  │  │      accept.html
                │  │  │      basic.html
                │  │  │      sort.html
                │  │  │      
                │  │  ├─easyloader
                │  │  │      basic.html
                │  │  │      
                │  │  ├─filebox
                │  │  │      basic.html
                │  │  │      buttonalign.html
                │  │  │      fluid.html
                │  │  │      
                │  │  ├─form
                │  │  │      basic.html
                │  │  │      form_data1.json
                │  │  │      load.html
                │  │  │      validateonsubmit.html
                │  │  │      
                │  │  ├─layout
                │  │  │      addremove.html
                │  │  │      autoheight.html
                │  │  │      basic.html
                │  │  │      collapsetitle.html
                │  │  │      complex.html
                │  │  │      customcollapsetitle.html
                │  │  │      datagrid_data1.json
                │  │  │      fluid.html
                │  │  │      full.html
                │  │  │      nestedlayout.html
                │  │  │      nocollapsible.html
                │  │  │      propertygrid_data1.json
                │  │  │      tree_data1.json
                │  │  │      _content.html
                │  │  │      
                │  │  ├─linkbutton
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      group.html
                │  │  │      iconalign.html
                │  │  │      plain.html
                │  │  │      size.html
                │  │  │      style.html
                │  │  │      toggle.html
                │  │  │      
                │  │  ├─menu
                │  │  │      basic.html
                │  │  │      customitem.html
                │  │  │      events.html
                │  │  │      inline.html
                │  │  │      nav.html
                │  │  │      
                │  │  ├─menubutton
                │  │  │      actions.html
                │  │  │      alignment.html
                │  │  │      basic.html
                │  │  │      nav.html
                │  │  │      
                │  │  ├─messager
                │  │  │      alert.html
                │  │  │      basic.html
                │  │  │      interactive.html
                │  │  │      position.html
                │  │  │      
                │  │  ├─numberbox
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      format.html
                │  │  │      range.html
                │  │  │      
                │  │  ├─numberspinner
                │  │  │      align.html
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      increment.html
                │  │  │      range.html
                │  │  │      
                │  │  ├─pagination
                │  │  │      attaching.html
                │  │  │      basic.html
                │  │  │      custombuttons.html
                │  │  │      layout.html
                │  │  │      links.html
                │  │  │      simple.html
                │  │  │      
                │  │  ├─panel
                │  │  │      basic.html
                │  │  │      customtools.html
                │  │  │      fluid.html
                │  │  │      footer.html
                │  │  │      halign.html
                │  │  │      loadcontent.html
                │  │  │      nestedpanel.html
                │  │  │      paneltools.html
                │  │  │      _content.html
                │  │  │      
                │  │  ├─passwordbox
                │  │  │      basic.html
                │  │  │      flash.html
                │  │  │      validatepassword.html
                │  │  │      
                │  │  ├─progressbar
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      
                │  │  ├─propertygrid
                │  │  │      basic.html
                │  │  │      customcolumns.html
                │  │  │      groupformat.html
                │  │  │      propertygrid_data1.json
                │  │  │      
                │  │  ├─resizable
                │  │  │      basic.html
                │  │  │      
                │  │  ├─searchbox
                │  │  │      basic.html
                │  │  │      category.html
                │  │  │      fluid.html
                │  │  │      
                │  │  ├─slider
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      formattip.html
                │  │  │      nonlinear.html
                │  │  │      range.html
                │  │  │      rule.html
                │  │  │      vertical.html
                │  │  │      
                │  │  ├─splitbutton
                │  │  │      actions.html
                │  │  │      basic.html
                │  │  │      
                │  │  ├─switchbutton
                │  │  │      action.html
                │  │  │      basic.html
                │  │  │      
                │  │  ├─tabs
                │  │  │  │  autoheight.html
                │  │  │  │  basic.html
                │  │  │  │  dropdown.html
                │  │  │  │  fixedwidth.html
                │  │  │  │  fluid.html
                │  │  │  │  hover.html
                │  │  │  │  nestedtabs.html
                │  │  │  │  striptools.html
                │  │  │  │  style.html
                │  │  │  │  tabimage.html
                │  │  │  │  tabposition.html
                │  │  │  │  tabstools.html
                │  │  │  │  tree_data1.json
                │  │  │  │  _content.html
                │  │  │  │  
                │  │  │  └─images
                │  │  │          modem.png
                │  │  │          pda.png
                │  │  │          scanner.png
                │  │  │          tablet.png
                │  │  │          
                │  │  ├─tagbox
                │  │  │      autocomplete.html
                │  │  │      basic.html
                │  │  │      button.html
                │  │  │      format.html
                │  │  │      style.html
                │  │  │      tagbox_data1.json
                │  │  │      validate.html
                │  │  │      
                │  │  ├─textbox
                │  │  │      basic.html
                │  │  │      button.html
                │  │  │      clearicon.html
                │  │  │      custom.html
                │  │  │      fluid.html
                │  │  │      icons.html
                │  │  │      multiline.html
                │  │  │      size.html
                │  │  │      
                │  │  ├─timespinner
                │  │  │      actions.html
                │  │  │      basic.html
                │  │  │      fluid.html
                │  │  │      range.html
                │  │  │      
                │  │  ├─tooltip
                │  │  │      ajax.html
                │  │  │      basic.html
                │  │  │      customcontent.html
                │  │  │      customstyle.html
                │  │  │      position.html
                │  │  │      toolbar.html
                │  │  │      tooltipdialog.html
                │  │  │      _content.html
                │  │  │      _dialog.html
                │  │  │      
                │  │  ├─tree
                │  │  │      actions.html
                │  │  │      animation.html
                │  │  │      basic.html
                │  │  │      checkbox.html
                │  │  │      contextmenu.html
                │  │  │      customcheckbox.html
                │  │  │      dnd.html
                │  │  │      editable.html
                │  │  │      formatting.html
                │  │  │      icons.html
                │  │  │      lazyload.html
                │  │  │      lines.html
                │  │  │      tree_data1.json
                │  │  │      tree_data2.json
                │  │  │      
                │  │  ├─treegrid
                │  │  │      actions.html
                │  │  │      basic.html
                │  │  │      checkbox.html
                │  │  │      clientpagination.html
                │  │  │      contextmenu.html
                │  │  │      customcheckbox.html
                │  │  │      editable.html
                │  │  │      fluid.html
                │  │  │      footer.html
                │  │  │      lines.html
                │  │  │      reports.html
                │  │  │      treegrid_data1.json
                │  │  │      treegrid_data2.json
                │  │  │      treegrid_data3.json
                │  │  │      
                │  │  ├─validatebox
                │  │  │      basic.html
                │  │  │      customtooltip.html
                │  │  │      errorplacement.html
                │  │  │      validateonblur.html
                │  │  │      
                │  │  └─window
                │  │          basic.html
                │  │          borderstyle.html
                │  │          customtools.html
                │  │          fluid.html
                │  │          footer.html
                │  │          inlinewindow.html
                │  │          modalwindow.html
                │  │          windowlayout.html
                │  │          
                │  ├─demo-mobile
                │  │  ├─accordion
                │  │  │      basic.html
                │  │  │      header.html
                │  │  │      _content.html
                │  │  │      
                │  │  ├─animation
                │  │  │      basic.html
                │  │  │      fade.html
                │  │  │      pop.html
                │  │  │      slide.html
                │  │  │      
                │  │  ├─badge
                │  │  │      basic.html
                │  │  │      button.html
                │  │  │      list.html
                │  │  │      tabs.html
                │  │  │      
                │  │  ├─button
                │  │  │      basic.html
                │  │  │      group.html
                │  │  │      style.html
                │  │  │      switch.html
                │  │  │      
                │  │  ├─datagrid
                │  │  │      basic.html
                │  │  │      rowediting.html
                │  │  │      
                │  │  ├─datalist
                │  │  │      basic.html
                │  │  │      group.html
                │  │  │      selection.html
                │  │  │      
                │  │  ├─dialog
                │  │  │      basic.html
                │  │  │      message.html
                │  │  │      
                │  │  ├─form
                │  │  │      basic.html
                │  │  │      
                │  │  ├─images
                │  │  │      login1.jpg
                │  │  │      modem.png
                │  │  │      more.png
                │  │  │      pda.png
                │  │  │      scanner.png
                │  │  │      tablet.png
                │  │  │      
                │  │  ├─input
                │  │  │      numberspinner.html
                │  │  │      textbox.html
                │  │  │      
                │  │  ├─layout
                │  │  │      basic.html
                │  │  │      
                │  │  ├─menu
                │  │  │      basic.html
                │  │  │      menubar.html
                │  │  │      
                │  │  ├─panel
                │  │  │      ajax.html
                │  │  │      basic.html
                │  │  │      nav.html
                │  │  │      _content.html
                │  │  │      
                │  │  ├─simplelist
                │  │  │      basic.html
                │  │  │      button.html
                │  │  │      group.html
                │  │  │      image.html
                │  │  │      link.html
                │  │  │      
                │  │  ├─tabs
                │  │  │      basic.html
                │  │  │      nav.html
                │  │  │      pill.html
                │  │  │      
                │  │  ├─toolbar
                │  │  │      basic.html
                │  │  │      button.html
                │  │  │      menu.html
                │  │  │      
                │  │  └─tree
                │  │          basic.html
                │  │          dnd.html
                │  │          
                │  ├─locale
                │  │      easyui-lang-af.js
                │  │      easyui-lang-am.js
                │  │      easyui-lang-ar.js
                │  │      easyui-lang-bg.js
                │  │      easyui-lang-ca.js
                │  │      easyui-lang-cs.js
                │  │      easyui-lang-cz.js
                │  │      easyui-lang-da.js
                │  │      easyui-lang-de.js
                │  │      easyui-lang-el.js
                │  │      easyui-lang-en.js
                │  │      easyui-lang-es.js
                │  │      easyui-lang-fr.js
                │  │      easyui-lang-it.js
                │  │      easyui-lang-jp.js
                │  │      easyui-lang-ko.js
                │  │      easyui-lang-nl.js
                │  │      easyui-lang-pl.js
                │  │      easyui-lang-pt_BR.js
                │  │      easyui-lang-ru.js
                │  │      easyui-lang-sv_SE.js
                │  │      easyui-lang-tr.js
                │  │      easyui-lang-zh_CN.js
                │  │      easyui-lang-zh_TW.js
                │  │      
                │  ├─plugins
                │  │      jquery.accordion.js
                │  │      jquery.calendar.js
                │  │      jquery.combo.js
                │  │      jquery.combobox.js
                │  │      jquery.combogrid.js
                │  │      jquery.combotree.js
                │  │      jquery.combotreegrid.js
                │  │      jquery.datagrid.js
                │  │      jquery.datalist.js
                │  │      jquery.datebox.js
                │  │      jquery.datetimebox.js
                │  │      jquery.datetimespinner.js
                │  │      jquery.dialog.js
                │  │      jquery.draggable.js
                │  │      jquery.droppable.js
                │  │      jquery.filebox.js
                │  │      jquery.form.js
                │  │      jquery.layout.js
                │  │      jquery.linkbutton.js
                │  │      jquery.menu.js
                │  │      jquery.menubutton.js
                │  │      jquery.messager.js
                │  │      jquery.mobile.js
                │  │      jquery.numberbox.js
                │  │      jquery.numberspinner.js
                │  │      jquery.pagination.js
                │  │      jquery.panel.js
                │  │      jquery.parser.js
                │  │      jquery.passwordbox.js
                │  │      jquery.progressbar.js
                │  │      jquery.propertygrid.js
                │  │      jquery.resizable.js
                │  │      jquery.searchbox.js
                │  │      jquery.slider.js
                │  │      jquery.spinner.js
                │  │      jquery.splitbutton.js
                │  │      jquery.switchbutton.js
                │  │      jquery.tabs.js
                │  │      jquery.tagbox.js
                │  │      jquery.textbox.js
                │  │      jquery.timespinner.js
                │  │      jquery.tooltip.js
                │  │      jquery.tree.js
                │  │      jquery.treegrid.js
                │  │      jquery.validatebox.js
                │  │      jquery.window.js
                │  │      
                │  ├─src
                │  │      easyloader.js
                │  │      jquery.accordion.js
                │  │      jquery.calendar.js
                │  │      jquery.combobox.js
                │  │      jquery.datebox.js
                │  │      jquery.draggable.js
                │  │      jquery.droppable.js
                │  │      jquery.form.js
                │  │      jquery.linkbutton.js
                │  │      jquery.menu.js
                │  │      jquery.parser.js
                │  │      jquery.progressbar.js
                │  │      jquery.propertygrid.js
                │  │      jquery.resizable.js
                │  │      jquery.slider.js
                │  │      jquery.tabs.js
                │  │      jquery.window.js
                │  │      
                │  └─themes
                │      │  color.css
                │      │  icon.css
                │      │  mobile.css
                │      │  
                │      ├─black
                │      │  │  accordion.css
                │      │  │  calendar.css
                │      │  │  combo.css
                │      │  │  combobox.css
                │      │  │  datagrid.css
                │      │  │  datalist.css
                │      │  │  datebox.css
                │      │  │  dialog.css
                │      │  │  easyui.css
                │      │  │  filebox.css
                │      │  │  layout.css
                │      │  │  linkbutton.css
                │      │  │  menu.css
                │      │  │  menubutton.css
                │      │  │  messager.css
                │      │  │  numberbox.css
                │      │  │  pagination.css
                │      │  │  panel.css
                │      │  │  passwordbox.css
                │      │  │  progressbar.css
                │      │  │  propertygrid.css
                │      │  │  searchbox.css
                │      │  │  slider.css
                │      │  │  spinner.css
                │      │  │  splitbutton.css
                │      │  │  switchbutton.css
                │      │  │  tabs.css
                │      │  │  tagbox.css
                │      │  │  textbox.css
                │      │  │  tooltip.css
                │      │  │  tree.css
                │      │  │  validatebox.css
                │      │  │  window.css
                │      │  │  
                │      │  └─images
                │      │          accordion_arrows.png
                │      │          blank.gif
                │      │          calendar_arrows.png
                │      │          combo_arrow.png
                │      │          datagrid_icons.png
                │      │          datebox_arrow.png
                │      │          layout_arrows.png
                │      │          linkbutton_bg.png
                │      │          loading.gif
                │      │          menu_arrows.png
                │      │          messager_icons.png
                │      │          pagination_icons.png
                │      │          panel_tools.png
                │      │          passwordbox_close.png
                │      │          passwordbox_open.png
                │      │          searchbox_button.png
                │      │          slider_handle.png
                │      │          spinner_arrows.png
                │      │          tabs_icons.png
                │      │          tagbox_icons.png
                │      │          tree_icons.png
                │      │          validatebox_warning.png
                │      │          
                │      ├─bootstrap
                │      │  │  accordion.css
                │      │  │  calendar.css
                │      │  │  combo.css
                │      │  │  combobox.css
                │      │  │  datagrid.css
                │      │  │  datalist.css
                │      │  │  datebox.css
                │      │  │  dialog.css
                │      │  │  easyui.css
                │      │  │  filebox.css
                │      │  │  layout.css
                │      │  │  linkbutton.css
                │      │  │  menu.css
                │      │  │  menubutton.css
                │      │  │  messager.css
                │      │  │  numberbox.css
                │      │  │  pagination.css
                │      │  │  panel.css
                │      │  │  passwordbox.css
                │      │  │  progressbar.css
                │      │  │  propertygrid.css
                │      │  │  searchbox.css
                │      │  │  slider.css
                │      │  │  spinner.css
                │      │  │  splitbutton.css
                │      │  │  switchbutton.css
                │      │  │  tabs.css
                │      │  │  tagbox.css
                │      │  │  textbox.css
                │      │  │  tooltip.css
                │      │  │  tree.css
                │      │  │  validatebox.css
                │      │  │  window.css
                │      │  │  
                │      │  └─images
                │      │          accordion_arrows.png
                │      │          blank.gif
                │      │          calendar_arrows.png
                │      │          combo_arrow.png
                │      │          datagrid_icons.png
                │      │          datebox_arrow.png
                │      │          layout_arrows.png
                │      │          linkbutton_bg.png
                │      │          loading.gif
                │      │          menu_arrows.png
                │      │          messager_icons.png
                │      │          pagination_icons.png
                │      │          panel_tools.png
                │      │          passwordbox_close.png
                │      │          passwordbox_open.png
                │      │          searchbox_button.png
                │      │          slider_handle.png
                │      │          spinner_arrows.png
                │      │          tabs_icons.png
                │      │          tagbox_icons.png
                │      │          tree_icons.png
                │      │          validatebox_warning.png
                │      │          
                │      ├─default
                │      │  │  accordion.css
                │      │  │  calendar.css
                │      │  │  combo.css
                │      │  │  combobox.css
                │      │  │  datagrid.css
                │      │  │  datalist.css
                │      │  │  datebox.css
                │      │  │  dialog.css
                │      │  │  easyui.css
                │      │  │  filebox.css
                │      │  │  layout.css
                │      │  │  linkbutton.css
                │      │  │  menu.css
                │      │  │  menubutton.css
                │      │  │  messager.css
                │      │  │  numberbox.css
                │      │  │  pagination.css
                │      │  │  panel.css
                │      │  │  passwordbox.css
                │      │  │  progressbar.css
                │      │  │  propertygrid.css
                │      │  │  searchbox.css
                │      │  │  slider.css
                │      │  │  spinner.css
                │      │  │  splitbutton.css
                │      │  │  switchbutton.css
                │      │  │  tabs.css
                │      │  │  tagbox.css
                │      │  │  textbox.css
                │      │  │  tooltip.css
                │      │  │  tree.css
                │      │  │  validatebox.css
                │      │  │  window.css
                │      │  │  
                │      │  └─images
                │      │          accordion_arrows.png
                │      │          blank.gif
                │      │          calendar_arrows.png
                │      │          combo_arrow.png
                │      │          datagrid_icons.png
                │      │          datebox_arrow.png
                │      │          layout_arrows.png
                │      │          linkbutton_bg.png
                │      │          loading.gif
                │      │          menu_arrows.png
                │      │          messager_icons.png
                │      │          pagination_icons.png
                │      │          panel_tools.png
                │      │          passwordbox_close.png
                │      │          passwordbox_open.png
                │      │          searchbox_button.png
                │      │          slider_handle.png
                │      │          spinner_arrows.png
                │      │          tabs_icons.png
                │      │          tagbox_icons.png
                │      │          tree_icons.png
                │      │          validatebox_warning.png
                │      │          
                │      ├─gray
                │      │  │  accordion.css
                │      │  │  calendar.css
                │      │  │  combo.css
                │      │  │  combobox.css
                │      │  │  datagrid.css
                │      │  │  datalist.css
                │      │  │  datebox.css
                │      │  │  dialog.css
                │      │  │  easyui.css
                │      │  │  filebox.css
                │      │  │  layout.css
                │      │  │  linkbutton.css
                │      │  │  menu.css
                │      │  │  menubutton.css
                │      │  │  messager.css
                │      │  │  numberbox.css
                │      │  │  pagination.css
                │      │  │  panel.css
                │      │  │  passwordbox.css
                │      │  │  progressbar.css
                │      │  │  propertygrid.css
                │      │  │  searchbox.css
                │      │  │  slider.css
                │      │  │  spinner.css
                │      │  │  splitbutton.css
                │      │  │  switchbutton.css
                │      │  │  tabs.css
                │      │  │  tagbox.css
                │      │  │  textbox.css
                │      │  │  tooltip.css
                │      │  │  tree.css
                │      │  │  validatebox.css
                │      │  │  window.css
                │      │  │  
                │      │  └─images
                │      │          accordion_arrows.png
                │      │          blank.gif
                │      │          calendar_arrows.png
                │      │          combo_arrow.png
                │      │          datagrid_icons.png
                │      │          datebox_arrow.png
                │      │          layout_arrows.png
                │      │          linkbutton_bg.png
                │      │          loading.gif
                │      │          menu_arrows.png
                │      │          messager_icons.png
                │      │          pagination_icons.png
                │      │          panel_tools.png
                │      │          passwordbox_close.png
                │      │          passwordbox_open.png
                │      │          searchbox_button.png
                │      │          slider_handle.png
                │      │          spinner_arrows.png
                │      │          tabs_icons.png
                │      │          tagbox_icons.png
                │      │          tree_icons.png
                │      │          validatebox_warning.png
                │      │          
                │      ├─icons
                │      │      back.png
                │      │      blank.gif
                │      │      cancel.png
                │      │      clear.png
                │      │      cut.png
                │      │      edit_add.png
                │      │      edit_remove.png
                │      │      filesave.png
                │      │      filter.png
                │      │      help.png
                │      │      large_chart.png
                │      │      large_clipart.png
                │      │      large_picture.png
                │      │      large_shapes.png
                │      │      large_smartart.png
                │      │      lock.png
                │      │      man.png
                │      │      mini_add.png
                │      │      mini_edit.png
                │      │      mini_refresh.png
                │      │      more.png
                │      │      no.png
                │      │      ok.png
                │      │      pencil.png
                │      │      print.png
                │      │      redo.png
                │      │      reload.png
                │      │      search.png
                │      │      sum.png
                │      │      tip.png
                │      │      undo.png
                │      │      
                │      ├─material
                │      │  │  accordion.css
                │      │  │  calendar.css
                │      │  │  combo.css
                │      │  │  combobox.css
                │      │  │  datagrid.css
                │      │  │  datalist.css
                │      │  │  datebox.css
                │      │  │  dialog.css
                │      │  │  easyui.css
                │      │  │  filebox.css
                │      │  │  layout.css
                │      │  │  linkbutton.css
                │      │  │  menu.css
                │      │  │  menubutton.css
                │      │  │  messager.css
                │      │  │  numberbox.css
                │      │  │  pagination.css
                │      │  │  panel.css
                │      │  │  passwordbox.css
                │      │  │  progressbar.css
                │      │  │  propertygrid.css
                │      │  │  searchbox.css
                │      │  │  slider.css
                │      │  │  spinner.css
                │      │  │  splitbutton.css
                │      │  │  switchbutton.css
                │      │  │  tabs.css
                │      │  │  tagbox.css
                │      │  │  textbox.css
                │      │  │  tooltip.css
                │      │  │  tree.css
                │      │  │  validatebox.css
                │      │  │  window.css
                │      │  │  
                │      │  └─images
                │      │          accordion_arrows.png
                │      │          blank.gif
                │      │          calendar_arrows.png
                │      │          combo_arrow.png
                │      │          datagrid_icons.png
                │      │          datebox_arrow.png
                │      │          layout_arrows.png
                │      │          linkbutton_bg.png
                │      │          loading.gif
                │      │          menu_arrows.png
                │      │          messager_icons.png
                │      │          pagination_icons.png
                │      │          panel_tools.png
                │      │          passwordbox_close.png
                │      │          passwordbox_open.png
                │      │          searchbox_button.png
                │      │          slider_handle.png
                │      │          spinner_arrows.png
                │      │          tabs_icons.png
                │      │          tagbox_icons.png
                │      │          Thumbs.db
                │      │          tree_icons.png
                │      │          validatebox_warning.png
                │      │          
                │      ├─metro
                │      │  │  accordion.css
                │      │  │  calendar.css
                │      │  │  combo.css
                │      │  │  combobox.css
                │      │  │  datagrid.css
                │      │  │  datalist.css
                │      │  │  datebox.css
                │      │  │  dialog.css
                │      │  │  easyui.css
                │      │  │  filebox.css
                │      │  │  layout.css
                │      │  │  linkbutton.css
                │      │  │  menu.css
                │      │  │  menubutton.css
                │      │  │  messager.css
                │      │  │  numberbox.css
                │      │  │  pagination.css
                │      │  │  panel.css
                │      │  │  passwordbox.css
                │      │  │  progressbar.css
                │      │  │  propertygrid.css
                │      │  │  searchbox.css
                │      │  │  slider.css
                │      │  │  spinner.css
                │      │  │  splitbutton.css
                │      │  │  switchbutton.css
                │      │  │  tabs.css
                │      │  │  tagbox.css
                │      │  │  textbox.css
                │      │  │  tooltip.css
                │      │  │  tree.css
                │      │  │  validatebox.css
                │      │  │  window.css
                │      │  │  
                │      │  └─images
                │      │          accordion_arrows.png
                │      │          blank.gif
                │      │          calendar_arrows.png
                │      │          combo_arrow.png
                │      │          datagrid_icons.png
                │      │          datebox_arrow.png
                │      │          layout_arrows.png
                │      │          linkbutton_bg.png
                │      │          loading.gif
                │      │          menu_arrows.png
                │      │          messager_icons.png
                │      │          pagination_icons.png
                │      │          panel_tools.png
                │      │          passwordbox_close.png
                │      │          passwordbox_open.png
                │      │          searchbox_button.png
                │      │          slider_handle.png
                │      │          spinner_arrows.png
                │      │          tabs_icons.png
                │      │          tagbox_icons.png
                │      │          tree_icons.png
                │      │          validatebox_warning.png
                │      │          
                │      └─ui-sunny
                │          │  .DS_Store
                │          │  accordion.css
                │          │  calendar.css
                │          │  combo.css
                │          │  combobox.css
                │          │  datagrid.css
                │          │  datalist.css
                │          │  datebox.css
                │          │  dialog.css
                │          │  easyui.css
                │          │  filebox.css
                │          │  layout.css
                │          │  linkbutton.css
                │          │  menu.css
                │          │  menubutton.css
                │          │  messager.css
                │          │  numberbox.css
                │          │  pagination.css
                │          │  panel.css
                │          │  passwordbox.css
                │          │  progressbar.css
                │          │  propertygrid.css
                │          │  searchbox.css
                │          │  slider.css
                │          │  spinner.css
                │          │  splitbutton.css
                │          │  switchbutton.css
                │          │  tabs.css
                │          │  tagbox.css
                │          │  textbox.css
                │          │  tooltip.css
                │          │  tree.css
                │          │  validatebox.css
                │          │  window.css
                │          │  
                │          └─images
                │                  accordion_arrows.png
                │                  blank.gif
                │                  calendar_arrows.png
                │                  combo_arrow.png
                │                  datagrid_icons.png
                │                  datebox_arrow.png
                │                  layout_arrows.png
                │                  linkbutton_bg.png
                │                  loading.gif
                │                  menu_arrows.png
                │                  messager_icons.png
                │                  pagination_icons.png
                │                  panel_tools.png
                │                  passwordbox_close.png
                │                  passwordbox_open.png
                │                  searchbox_button.png
                │                  slider_handle.png
                │                  spinner_arrows.png
                │                  tabs_icons.png
                │                  tagbox_icons.png
                │                  tree_icons.png
                │                  validatebox_warning.png
                │                  
                ├─js
                │      flexible.js
                │      infographic.js
                │      iscroll.js
                │      jquery.min.js
                │      md5.js
                │      navbarscroll.js
                │      Particleground.js
                │      prefixfree.min.js
                │      verificationNumbers.js
                │      
                ├─META-INF
                │      MANIFEST.MF
                │      
                └─WEB-INF
                    │  web.xml
                    │  
                    ├─content
                    │  │  main.jsp
                    │  │  schoolHead.jsp
                    │  │  schoolMain.jsp
                    │  │  tologin.jsp
                    │  │  
                    │  ├─clazz
                    │  │      classManage.jsp
                    │  │      classStudent.jsp
                    │  │      
                    │  ├─course
                    │  │      CourseEChars.jsp
                    │  │      courseManage.jsp
                    │  │      
                    │  ├─file
                    │  │      fileUpload.jsp
                    │  │      
                    │  ├─grade
                    │  │      SCManage.jsp
                    │  │      SroceEChars.jsp
                    │  │      
                    │  ├─school
                    │  │      putGoods.jsp
                    │  │      schoolfile.jsp
                    │  │      schoolGrade.jsp
                    │  │      schoolIndex.jsp
                    │  │      schoolInfo.jsp
                    │  │      schoolPwd.jsp
                    │  │      schoolSale.jsp
                    │  │      
                    │  ├─student
                    │  │      studentEchars.jsp
                    │  │      studentInfoManage.jsp
                    │  │      
                    │  └─user
                    │          userLoginInfo.jsp
                    │          userManage.jsp
                    │          
                    └─lib
                            aopalliance-1.0.jar
                            commons-beanutils.jar
                            commons-collections.jar
                            commons-dbcp-1.4.jar
                            commons-fileupload-1.3.3.jar
                            commons-io-2.0.1.jar
                            commons-lang-2.5.jar
                            commons-logging-1.1.3.jar
                            commons-pool-1.6.jar
                            ezmorph-1.0.6.jar
                            javax.servlet-api-3.0.1.jar
                            jotm.jar
                            json-lib-2.2.3-jdk15.jar
                            jstl.jar
                            log4j-1.2.12.jar
                            log4j-core-2.3.jar
                            mybatis-3.1.1.jar
                            mybatis-3.4.1.jar
                            mybatis-spring-1.2.1.jar
                            mysql-connector-java-5.1.10-bin.jar
                            slf4j-log4j12-1.6.1.jar
                            spring-aop-4.1.2.RELEASE.jar
                            spring-beans-4.1.2.RELEASE.jar
                            spring-context-4.1.2.RELEASE.jar
                            spring-core-4.1.2.RELEASE.jar
                            spring-expression-4.1.2.RELEASE.jar
                            spring-expression-4.2.4.RELEASE.jar
                            spring-instrument-4.2.4.RELEASE.jar
                            spring-instrument-tomcat-4.2.4.RELEASE.jar
                            spring-jdbc-4.2.4.RELEASE.jar
                            spring-jms-4.2.4.RELEASE.jar
                            spring-test-4.2.4.RELEASE.jar
                            spring-tx-4.2.4.RELEASE.jar
                            spring-web-4.1.2.RELEASE.jar
                            spring-webmvc-4.1.2.RELEASE.jar
                            standard.jar
                            

目  录
1.引言    1
2.需求分析    2
2.1功能性需求    2
2.2安全性需求    2
3.系统的设计与实现    3
3.1 模块功能介绍    3
3.1.1学生与教师的共同功能    3
3.1.2学生的功能    3
3.1.3管理人员的功能    3
3.2 系统整体功能结构    3
3.3 用户权限划分    5
3.4 登录流程图    5
3.5 数据库设计    6
3.5.1 E-R图    6
3.5.2 实体和属性的定义    7
3.6 接口设计    10
3.6.1 登录接口设计    10
3.6.2 查询接口设计    11
3.6.3 增加接口设计    13
3.6.4 修改接口设计    14
3.6.5 删除接口设计    15
3.6.6 条件限制接口    16
3.7 安全性防护    18
3.7.1 密码加密    18
3.7.2 请求拦截    20
3.8 数据可视化设计    21
3.8.1 学生户籍分布地图    21
3.8.2 选修课程人数分布柱状图    22
3.8.3 选修课程人数分布饼图    24
4.功能测试    25
4.1登录测试    25
4.2密码修改测试    26
4.3复杂查询测试    26
4.4添加测试    30
4.5删除测试    30
4.6修改测试    31
5.    总结    32
6.致谢    33
参考文献    34


标签:成绩管理系统,选课管理系统,教务管理系统

  • 专注毕业设计源码作品
  • 毕业设计源码论文全套
  • 每件作品均测试后上线
  • 提供所有教程和软件下载

Copyright © 2008-2024 jsjbysjw.com . All Rights Reserved. 备案号:苏ICP备2021056683号-4

  • 联系QQ:81677093
  • 微信:bysj1950