在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Java数据库编程 → ssm学生信息管理系统(源码+数据库+文档)

ssm学生信息管理系统(源码+数据库+文档)

Java数据库编程

下载此实例
  • 开发语言:Java
  • 实例大小:88.78M
  • 下载次数:215
  • 浏览次数:1268
  • 发布时间:2020-07-09
  • 实例类别:Java数据库编程
  • 发 布 人:SystemJava
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】

【实例截图】

【核心代码】

ssm框架实现的学生系统

├── 课堂笔记
│   ├── SSM学生信息管理系统.png
│   ├── ssm框架原理流程图.png
│   └── 课堂笔记.doc
├── 运行截图
│   ├── 0.JPG
│   ├── 1.JPG
│   ├── 2.JPG
│   ├── 3.JPG
│   ├── 4.JPG
│   ├── 5.JPG
│   ├── 6.JPG
│   ├── 7.JPG
│   ├── 8.JPG
│   └── 9.JPG
├── 项目源码
│   ├── Eclipse导入这个.zip
│   └── StudentManagerSSM
│       ├── WebContent
│       │   ├── META-INF
│       │   │   └── MANIFEST.MF
│       │   ├── WEB-INF
│       │   │   ├── lib
│       │   │   │   ├── aspectjweaver-1.8.9.jar
│       │   │   │   ├── c3p0-0.9.1.jar
│       │   │   │   ├── commons-beanutils-1.7.0.jar
│       │   │   │   ├── commons-collections-3.2.jar
│       │   │   │   ├── commons-fileupload-1.3.3.jar
│       │   │   │   ├── commons-io-2.2.jar
│       │   │   │   ├── commons-lang-2.3.jar
│       │   │   │   ├── commons-logging-1.1.jar
│       │   │   │   ├── ezmorph-1.0.4.jar
│       │   │   │   ├── gson-1.6.jar
│       │   │   │   ├── hamcrest-core-1.3.jar
│       │   │   │   ├── jackson-annotations-2.8.0.jar
│       │   │   │   ├── jackson-core-2.8.9.jar
│       │   │   │   ├── jackson-databind-2.8.9.jar
│       │   │   │   ├── javax.servlet-api-3.1.0.jar
│       │   │   │   ├── json-lib-2.2.1-jdk15.jar
│       │   │   │   ├── json-simple-1.1.1.jar
│       │   │   │   ├── jsp-api-2.2.jar
│       │   │   │   ├── jsqlparser-1.0.jar
│       │   │   │   ├── jstl-1.2.jar
│       │   │   │   ├── junit-4.12.jar
│       │   │   │   ├── log4j.jar
│       │   │   │   ├── mybatis-3.4.4.jar
│       │   │   │   ├── mybatis-generator-core-1.3.5.jar
│       │   │   │   ├── mybatis-spring-1.3.1.jar
│       │   │   │   ├── mysql-connector-java-5.1.29.jar
│       │   │   │   ├── pagehelper-5.0.3.jar
│       │   │   │   ├── spring-aop-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-aspects-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-beans-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-context-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-core-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-expression-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-jdbc-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-test-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-tx-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-web-4.3.9.RELEASE.jar
│       │   │   │   └── spring-webmvc-4.3.9.RELEASE.jar
│       │   │   ├── views
│       │   │   │   ├── clazz
│       │   │   │   │   └── clazz_list.jsp
│       │   │   │   ├── grade
│       │   │   │   │   └── grade_list.jsp
│       │   │   │   ├── hello world.jsp
│       │   │   │   ├── student
│       │   │   │   │   └── student_list.jsp
│       │   │   │   ├── system
│       │   │   │   │   ├── index.jsp
│       │   │   │   │   ├── login.jsp
│       │   │   │   │   └── welcome.jsp
│       │   │   │   └── user
│       │   │   │       └── user_list.jsp
│       │   │   └── web.xml
│       │   ├── easyui
│       │   │   ├── css
│       │   │   │   ├── default.css
│       │   │   │   └── demo.css
│       │   │   ├── jquery.easyui.min.js
│       │   │   ├── jquery.min.js
│       │   │   ├── js
│       │   │   │   ├── outlook2.js
│       │   │   │   └── validateExtends.js
│       │   │   └── themes
│       │   │       ├── color.css
│       │   │       ├── default
│       │   │       │   ├── accordion.css
│       │   │       │   ├── calendar.css
│       │   │       │   ├── combo.css
│       │   │       │   ├── combobox.css
│       │   │       │   ├── datagrid.css
│       │   │       │   ├── datalist.css
│       │   │       │   ├── datebox.css
│       │   │       │   ├── dialog.css
│       │   │       │   ├── easyui.css
│       │   │       │   ├── filebox.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
│       │   │       │   │   ├── searchbox_button.png
│       │   │       │   │   ├── slider_handle.png
│       │   │       │   │   ├── spinner_arrows.png
│       │   │       │   │   ├── tabs_icons.png
│       │   │       │   │   ├── tree_icons.png
│       │   │       │   │   └── validatebox_warning.png
│       │   │       │   ├── layout.css
│       │   │       │   ├── linkbutton.css
│       │   │       │   ├── menu.css
│       │   │       │   ├── menubutton.css
│       │   │       │   ├── messager.css
│       │   │       │   ├── numberbox.css
│       │   │       │   ├── pagination.css
│       │   │       │   ├── panel.css
│       │   │       │   ├── progressbar.css
│       │   │       │   ├── propertygrid.css
│       │   │       │   ├── searchbox.css
│       │   │       │   ├── slider.css
│       │   │       │   ├── spinner.css
│       │   │       │   ├── splitbutton.css
│       │   │       │   ├── tabs.css
│       │   │       │   ├── textbox.css
│       │   │       │   ├── tooltip.css
│       │   │       │   ├── tree.css
│       │   │       │   ├── validatebox.css
│       │   │       │   └── window.css
│       │   │       ├── icon.css
│       │   │       ├── icons
│       │   │       │   ├── 2012080412263.png
│       │   │       │   ├── asterisk_orange.png
│       │   │       │   ├── back.png
│       │   │       │   ├── basket_remove.png
│       │   │       │   ├── blank.gif
│       │   │       │   ├── book_add.png
│       │   │       │   ├── book_open_mark.png
│       │   │       │   ├── book_previous.png
│       │   │       │   ├── cancel.png
│       │   │       │   ├── chart_bar.png
│       │   │       │   ├── clear.png
│       │   │       │   ├── cut.png
│       │   │       │   ├── door_out.png
│       │   │       │   ├── edit_add.png
│       │   │       │   ├── edit_remove.png
│       │   │       │   ├── filesave.png
│       │   │       │   ├── filter.png
│       │   │       │   ├── find.png
│       │   │       │   ├── folder_up.png
│       │   │       │   ├── help.png
│       │   │       │   ├── house.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
│       │   │       │   ├── note.png
│       │   │       │   ├── ok.png
│       │   │       │   ├── pencil.png
│       │   │       │   ├── pencil_add.png
│       │   │       │   ├── print.png
│       │   │       │   ├── redo.png
│       │   │       │   ├── reload.png
│       │   │       │   ├── search.png
│       │   │       │   ├── set.png
│       │   │       │   ├── sum.png
│       │   │       │   ├── text_list_bullets.png
│       │   │       │   ├── text_list_numbers.png
│       │   │       │   ├── tip.png
│       │   │       │   ├── undo.png
│       │   │       │   ├── user_add.png
│       │   │       │   ├── user_gray.png
│       │   │       │   ├── user_red.png
│       │   │       │   ├── vcard_edit.png
│       │   │       │   ├── world.png
│       │   │       │   ├── world_add.png
│       │   │       │   ├── world_night.png
│       │   │       │   └── zoom_in.png
│       │   │       └── locale
│       │   │           └── easyui-lang-zh_CN.js
│       │   ├── h-ui
│       │   │   ├── css
│       │   │   │   ├── H-ui.css
│       │   │   │   ├── H-ui.login.css
│       │   │   │   └── H-ui.min.css
│       │   │   ├── images
│       │   │   │   ├── Thumbs.db
│       │   │   │   ├── acrossTab-2bak.png
│       │   │   │   ├── acrossTab-bg.png
│       │   │   │   ├── acrossTab-close.png
│       │   │   │   ├── acrossTab.png
│       │   │   │   ├── admin-login-bg.jpg
│       │   │   │   ├── admin-loginform-bg.png
│       │   │   │   ├── gq
│       │   │   │   │   ├── Thumbs.db
│       │   │   │   │   ├── cn.gif
│       │   │   │   │   ├── gj.png
│       │   │   │   │   └── us.gif
│       │   │   │   ├── hamburger-retina.gif
│       │   │   │   ├── hamburger.gif
│       │   │   │   ├── icon-add.png
│       │   │   │   ├── icon_error_s.png
│       │   │   │   ├── icon_jt2.png
│       │   │   │   ├── icon_right_s.png
│       │   │   │   ├── icon_warning_s.png
│       │   │   │   ├── loading.gif
│       │   │   │   ├── loading_072.gif
│       │   │   │   ├── sort_asc.png
│       │   │   │   ├── sort_both.png
│       │   │   │   ├── sort_desc.png
│       │   │   │   ├── totop.png
│       │   │   │   └── user.png
│       │   │   ├── js
│       │   │   │   ├── H-ui.admin.js
│       │   │   │   └── H-ui.js
│       │   │   ├── lib
│       │   │   │   ├── Hui-iconfont
│       │   │   │   │   └── 1.0.1
│       │   │   │   │       ├── demo.html
│       │   │   │   │       ├── iconfont.css
│       │   │   │   │       ├── iconfont.eot
│       │   │   │   │       ├── iconfont.svg
│       │   │   │   │       ├── iconfont.ttf
│       │   │   │   │       └── iconfont.woff
│       │   │   │   ├── icheck
│       │   │   │   │   ├── Thumbs.db
│       │   │   │   │   ├── aero.png
│       │   │   │   │   ├── aero@2x.png
│       │   │   │   │   ├── blue.png
│       │   │   │   │   ├── blue@2x.png
│       │   │   │   │   ├── green.png
│       │   │   │   │   ├── green@2x.png
│       │   │   │   │   ├── grey.png
│       │   │   │   │   ├── grey@2x.png
│       │   │   │   │   ├── icheck.css
│       │   │   │   │   ├── jquery.icheck.min.js
│       │   │   │   │   ├── minimal.png
│       │   │   │   │   ├── minimal@2x.png
│       │   │   │   │   ├── orange.png
│       │   │   │   │   ├── orange@2x.png
│       │   │   │   │   ├── pink.png
│       │   │   │   │   ├── pink@2x.png
│       │   │   │   │   ├── purple.png
│       │   │   │   │   ├── purple@2x.png
│       │   │   │   │   ├── red.png
│       │   │   │   │   ├── red@2x.png
│       │   │   │   │   ├── yellow.png
│       │   │   │   │   └── yellow@2x.png
│       │   │   │   └── jquery
│       │   │   │       └── 1.9.1
│       │   │   │           ├── jquery.js
│       │   │   │           └── jquery.min.js
│       │   │   └── skin
│       │   │       └── default
│       │   │           ├── Thumbs.db
│       │   │           ├── acrossTab-bg.png
│       │   │           ├── acrossTab.png
│       │   │           ├── icon_arrow.png
│       │   │           └── skin.css
│       │   ├── index.jsp
│       │   ├── photo
│       │   │   └── student.jpg
│       │   └── upload
│       │       ├── 1543325869087.png
│       │       ├── 1543325938270.png
│       │       ├── 1543326013627.png
│       │       ├── 1543326117464.png
│       │       ├── 1543327998851.jpg
│       │       ├── 1543405765961.JPG
│       │       ├── 1543405824049.JPG
│       │       ├── 1543405987820.jpg
│       │       ├── 1543406234856.JPG
│       │       ├── 1543406250827.JPG
│       │       ├── 1543408704487.JPG
│       │       ├── 1543408773940.jpg
│       │       └── 1543408794070.jpg
│       ├── build
│       │   └── classes
│       │       ├── com
│       │       │   └── ischoolbar
│       │       │       └── programmer
│       │       │           ├── controller
│       │       │           │   ├── ClazzController.class
│       │       │           │   ├── GradeController.class
│       │       │           │   ├── StudentController.class
│       │       │           │   ├── SystemController.class
│       │       │           │   └── UserController.class
│       │       │           ├── dao
│       │       │           │   ├── ClazzDao.class
│       │       │           │   ├── GradeDao.class
│       │       │           │   ├── StudentDao.class
│       │       │           │   └── UserDao.class
│       │       │           ├── entity
│       │       │           │   ├── Clazz.class
│       │       │           │   ├── Grade.class
│       │       │           │   ├── Student.class
│       │       │           │   └── User.class
│       │       │           ├── interceptor
│       │       │           │   └── LoginInterceptor.class
│       │       │           ├── page
│       │       │           │   └── Page.class
│       │       │           ├── service
│       │       │           │   ├── ClazzService.class
│       │       │           │   ├── GradeService.class
│       │       │           │   ├── StudentService.class
│       │       │           │   ├── UserService.class
│       │       │           │   └── impl
│       │       │           │       ├── ClazzServiceImpl.class
│       │       │           │       ├── GradeServiceImpl.class
│       │       │           │       ├── StudentServiceImpl.class
│       │       │           │       └── UserServiceImpl.class
│       │       │           └── util
│       │       │               ├── CpachaUtil.class
│       │       │               └── StringUtil.class
│       │       └── config
│       │           ├── db.properties
│       │           ├── log4j.properties
│       │           ├── mybatis
│       │           │   ├── mapper
│       │           │   │   ├── ClazzMapper.xml
│       │           │   │   ├── GradeMapper.xml
│       │           │   │   ├── StudentMapper.xml
│       │           │   │   └── UserMapper.xml
│       │           │   └── mybatis-config.xml
│       │           ├── spring
│       │           │   └── applicationContext.xml
│       │           └── springmvc
│       │               └── springmvc.xml
│       └── src
│           ├── com
│           │   └── ischoolbar
│           │       └── programmer
│           │           ├── controller
│           │           │   ├── ClazzController.java
│           │           │   ├── GradeController.java
│           │           │   ├── StudentController.java
│           │           │   ├── SystemController.java
│           │           │   └── UserController.java
│           │           ├── dao
│           │           │   ├── ClazzDao.java
│           │           │   ├── GradeDao.java
│           │           │   ├── StudentDao.java
│           │           │   └── UserDao.java
│           │           ├── entity
│           │           │   ├── Clazz.java
│           │           │   ├── Grade.java
│           │           │   ├── Student.java
│           │           │   └── User.java
│           │           ├── interceptor
│           │           │   └── LoginInterceptor.java
│           │           ├── page
│           │           │   └── Page.java
│           │           ├── service
│           │           │   ├── ClazzService.java
│           │           │   ├── GradeService.java
│           │           │   ├── StudentService.java
│           │           │   ├── UserService.java
│           │           │   └── impl
│           │           │       ├── ClazzServiceImpl.java
│           │           │       ├── GradeServiceImpl.java
│           │           │       ├── StudentServiceImpl.java
│           │           │       └── UserServiceImpl.java
│           │           └── util
│           │               ├── CpachaUtil.java
│           │               └── StringUtil.java
│           └── config
│               ├── db.properties
│               ├── log4j.properties
│               ├── mybatis
│               │   ├── mapper
│               │   │   ├── ClazzMapper.xml
│               │   │   ├── GradeMapper.xml
│               │   │   ├── StudentMapper.xml
│               │   │   └── UserMapper.xml
│               │   └── mybatis-config.xml
│               ├── spring
│               │   └── applicationContext.xml
│               └── springmvc
│                   └── springmvc.xml
├── 项目素材
│   ├── ssm框架基础配置文件
│   │   ├── config
│   │   │   ├── db.properties
│   │   │   ├── log4j.properties
│   │   │   ├── mybatis
│   │   │   │   ├── mapper
│   │   │   │   └── mybatis-config.xml
│   │   │   ├── spring
│   │   │   │   └── applicationContext.xml
│   │   │   └── springmvc
│   │   │       └── springmvc.xml
│   │   ├── lib
│   │   │   ├── aspectjweaver-1.8.9.jar
│   │   │   ├── c3p0-0.9.1.jar
│   │   │   ├── commons-beanutils-1.7.0.jar
│   │   │   ├── commons-collections-3.2.jar
│   │   │   ├── commons-fileupload-1.3.3.jar
│   │   │   ├── commons-io-2.2.jar
│   │   │   ├── commons-lang-2.3.jar
│   │   │   ├── commons-logging-1.1.jar
│   │   │   ├── ezmorph-1.0.4.jar
│   │   │   ├── gson-1.6.jar
│   │   │   ├── hamcrest-core-1.3.jar
│   │   │   ├── jackson-annotations-2.8.0.jar
│   │   │   ├── jackson-core-2.8.9.jar
│   │   │   ├── jackson-databind-2.8.9.jar
│   │   │   ├── javax.servlet-api-3.1.0.jar
│   │   │   ├── json-lib-2.2.1-jdk15.jar
│   │   │   ├── json-simple-1.1.1.jar
│   │   │   ├── jsp-api-2.2.jar
│   │   │   ├── jsqlparser-1.0.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   ├── junit-4.12.jar
│   │   │   ├── log4j.jar
│   │   │   ├── mybatis-3.4.4.jar
│   │   │   ├── mybatis-generator-core-1.3.5.jar
│   │   │   ├── mybatis-spring-1.3.1.jar
│   │   │   ├── mysql-connector-java-5.1.29.jar
│   │   │   ├── pagehelper-5.0.3.jar
│   │   │   ├── spring-aop-4.3.9.RELEASE.jar
│   │   │   ├── spring-aspects-4.3.9.RELEASE.jar
│   │   │   ├── spring-beans-4.3.9.RELEASE.jar
│   │   │   ├── spring-context-4.3.9.RELEASE.jar
│   │   │   ├── spring-core-4.3.9.RELEASE.jar
│   │   │   ├── spring-expression-4.3.9.RELEASE.jar
│   │   │   ├── spring-jdbc-4.3.9.RELEASE.jar
│   │   │   ├── spring-test-4.3.9.RELEASE.jar
│   │   │   ├── spring-tx-4.3.9.RELEASE.jar
│   │   │   ├── spring-web-4.3.9.RELEASE.jar
│   │   │   └── spring-webmvc-4.3.9.RELEASE.jar
│   │   └── web.xml
│   ├── 页面模板
│   │   └── WebContent
│   │       ├── 404.jsp
│   │       ├── 500.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── WEB-INF
│   │       │   ├── lib
│   │       │   │   ├── FilelLoad.jar
│   │       │   │   ├── c3p0-0.9.1.2.jar
│   │       │   │   ├── commons-beanutils-1.8.0.jar
│   │       │   │   ├── commons-beanutils-1.8.3.jar
│   │       │   │   ├── commons-collections-3.2.1.jar
│   │       │   │   ├── commons-dbutils-1.6.jar
│   │       │   │   ├── commons-fileupload-1.2.1.jar
│   │       │   │   ├── commons-io-1.4.jar
│   │       │   │   ├── commons-lang-2.5.jar
│   │       │   │   ├── commons-logging-1.1.1.jar
│   │       │   │   ├── commons-logging.jar
│   │       │   │   ├── ezmorph-1.0.6.jar
│   │       │   │   ├── fastjson-1.1.34.jar
│   │       │   │   ├── json-lib-2.3-jdk15.jar
│   │       │   │   ├── jsonplugin-0.34.jar
│   │       │   │   ├── jstl.jar
│   │       │   │   ├── morph-1.1.1.jar
│   │       │   │   ├── morph-sandbox-1.1.1.jar
│   │       │   │   ├── mysql-connector-java-5.1.7-bin.jar
│   │       │   │   ├── poi-3.8-20120326.jar
│   │       │   │   ├── poi-excelant-3.8-20120326.jar
│   │       │   │   ├── poi-ooxml-3.8-20120326.jar
│   │       │   │   ├── poi-scratchpad-3.8-20120326.jar
│   │       │   │   └── standard.jar
│   │       │   ├── view
│   │       │   │   ├── admin
│   │       │   │   │   ├── admin.jsp
│   │       │   │   │   ├── adminPersonal.jsp
│   │       │   │   │   └── welcome.jsp
│   │       │   │   ├── login.jsp
│   │       │   │   ├── other
│   │       │   │   │   ├── clazzList.jsp
│   │       │   │   │   ├── courseList.jsp
│   │       │   │   │   ├── examList.jsp
│   │       │   │   │   └── gradeList.jsp
│   │       │   │   ├── student
│   │       │   │   │   ├── examStudentList.jsp
│   │       │   │   │   ├── student.jsp
│   │       │   │   │   ├── studentList.jsp
│   │       │   │   │   ├── studentNoteList.jsp
│   │       │   │   │   ├── studentPersonal.jsp
│   │       │   │   │   └── welcome.jsp
│   │       │   │   └── teacher
│   │       │   │       ├── examTeacherList.jsp
│   │       │   │       ├── teacher.jsp
│   │       │   │       ├── teacherList.jsp
│   │       │   │       ├── teacherNoteList.jsp
│   │       │   │       ├── teacherPersonal.jsp
│   │       │   │       └── welcome.jsp
│   │       │   └── web.xml
│   │       ├── easyui
│   │       │   ├── css
│   │       │   │   ├── default.css
│   │       │   │   └── demo.css
│   │       │   ├── jquery.easyui.min.js
│   │       │   ├── jquery.min.js
│   │       │   ├── js
│   │       │   │   ├── outlook2.js
│   │       │   │   └── validateExtends.js
│   │       │   └── themes
│   │       │       ├── color.css
│   │       │       ├── default
│   │       │       │   ├── accordion.css
│   │       │       │   ├── calendar.css
│   │       │       │   ├── combo.css
│   │       │       │   ├── combobox.css
│   │       │       │   ├── datagrid.css
│   │       │       │   ├── datalist.css
│   │       │       │   ├── datebox.css
│   │       │       │   ├── dialog.css
│   │       │       │   ├── easyui.css
│   │       │       │   ├── filebox.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
│   │       │       │   │   ├── searchbox_button.png
│   │       │       │   │   ├── slider_handle.png
│   │       │       │   │   ├── spinner_arrows.png
│   │       │       │   │   ├── tabs_icons.png
│   │       │       │   │   ├── tree_icons.png
│   │       │       │   │   └── validatebox_warning.png
│   │       │       │   ├── layout.css
│   │       │       │   ├── linkbutton.css
│   │       │       │   ├── menu.css
│   │       │       │   ├── menubutton.css
│   │       │       │   ├── messager.css
│   │       │       │   ├── numberbox.css
│   │       │       │   ├── pagination.css
│   │       │       │   ├── panel.css
│   │       │       │   ├── progressbar.css
│   │       │       │   ├── propertygrid.css
│   │       │       │   ├── searchbox.css
│   │       │       │   ├── slider.css
│   │       │       │   ├── spinner.css
│   │       │       │   ├── splitbutton.css
│   │       │       │   ├── tabs.css
│   │       │       │   ├── textbox.css
│   │       │       │   ├── tooltip.css
│   │       │       │   ├── tree.css
│   │       │       │   ├── validatebox.css
│   │       │       │   └── window.css
│   │       │       ├── icon.css
│   │       │       ├── icons
│   │       │       │   ├── 2012080412263.png
│   │       │       │   ├── asterisk_orange.png
│   │       │       │   ├── back.png
│   │       │       │   ├── basket_remove.png
│   │       │       │   ├── blank.gif
│   │       │       │   ├── book_add.png
│   │       │       │   ├── book_open_mark.png
│   │       │       │   ├── book_previous.png
│   │       │       │   ├── cancel.png
│   │       │       │   ├── chart_bar.png
│   │       │       │   ├── clear.png
│   │       │       │   ├── cut.png
│   │       │       │   ├── door_out.png
│   │       │       │   ├── edit_add.png
│   │       │       │   ├── edit_remove.png
│   │       │       │   ├── filesave.png
│   │       │       │   ├── filter.png
│   │       │       │   ├── find.png
│   │       │       │   ├── folder_up.png
│   │       │       │   ├── help.png
│   │       │       │   ├── house.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
│   │       │       │   ├── note.png
│   │       │       │   ├── ok.png
│   │       │       │   ├── pencil.png
│   │       │       │   ├── pencil_add.png
│   │       │       │   ├── print.png
│   │       │       │   ├── redo.png
│   │       │       │   ├── reload.png
│   │       │       │   ├── search.png
│   │       │       │   ├── set.png
│   │       │       │   ├── sum.png
│   │       │       │   ├── text_list_bullets.png
│   │       │       │   ├── text_list_numbers.png
│   │       │       │   ├── tip.png
│   │       │       │   ├── undo.png
│   │       │       │   ├── user_add.png
│   │       │       │   ├── user_gray.png
│   │       │       │   ├── user_red.png
│   │       │       │   ├── vcard_edit.png
│   │       │       │   ├── world.png
│   │       │       │   ├── world_add.png
│   │       │       │   ├── world_night.png
│   │       │       │   └── zoom_in.png
│   │       │       └── locale
│   │       │           └── easyui-lang-zh_CN.js
│   │       ├── favicon.ico
│   │       ├── h-ui
│   │       │   ├── css
│   │       │   │   ├── H-ui.css
│   │       │   │   ├── H-ui.login.css
│   │       │   │   └── H-ui.min.css
│   │       │   ├── images
│   │       │   │   ├── Thumbs.db
│   │       │   │   ├── acrossTab-2bak.png
│   │       │   │   ├── acrossTab-bg.png
│   │       │   │   ├── acrossTab-close.png
│   │       │   │   ├── acrossTab.png
│   │       │   │   ├── admin-login-bg.jpg
│   │       │   │   ├── admin-loginform-bg.png
│   │       │   │   ├── gq
│   │       │   │   │   ├── Thumbs.db
│   │       │   │   │   ├── cn.gif
│   │       │   │   │   ├── gj.png
│   │       │   │   │   └── us.gif
│   │       │   │   ├── hamburger-retina.gif
│   │       │   │   ├── hamburger.gif
│   │       │   │   ├── icon-add.png
│   │       │   │   ├── icon_error_s.png
│   │       │   │   ├── icon_jt2.png
│   │       │   │   ├── icon_right_s.png
│   │       │   │   ├── icon_warning_s.png
│   │       │   │   ├── loading.gif
│   │       │   │   ├── loading_072.gif
│   │       │   │   ├── sort_asc.png
│   │       │   │   ├── sort_both.png
│   │       │   │   ├── sort_desc.png
│   │       │   │   ├── totop.png
│   │       │   │   └── user.png
│   │       │   ├── js
│   │       │   │   ├── H-ui.admin.js
│   │       │   │   └── H-ui.js
│   │       │   ├── lib
│   │       │   │   ├── Hui-iconfont
│   │       │   │   │   └── 1.0.1
│   │       │   │   │       ├── demo.html
│   │       │   │   │       ├── iconfont.css
│   │       │   │   │       ├── iconfont.eot
│   │       │   │   │       ├── iconfont.svg
│   │       │   │   │       ├── iconfont.ttf
│   │       │   │   │       └── iconfont.woff
│   │       │   │   ├── icheck
│   │       │   │   │   ├── Thumbs.db
│   │       │   │   │   ├── aero.png
│   │       │   │   │   ├── aero@2x.png
│   │       │   │   │   ├── blue.png
│   │       │   │   │   ├── blue@2x.png
│   │       │   │   │   ├── green.png
│   │       │   │   │   ├── green@2x.png
│   │       │   │   │   ├── grey.png
│   │       │   │   │   ├── grey@2x.png
│   │       │   │   │   ├── icheck.css
│   │       │   │   │   ├── jquery.icheck.min.js
│   │       │   │   │   ├── minimal.png
│   │       │   │   │   ├── minimal@2x.png
│   │       │   │   │   ├── orange.png
│   │       │   │   │   ├── orange@2x.png
│   │       │   │   │   ├── pink.png
│   │       │   │   │   ├── pink@2x.png
│   │       │   │   │   ├── purple.png
│   │       │   │   │   ├── purple@2x.png
│   │       │   │   │   ├── red.png
│   │       │   │   │   ├── red@2x.png
│   │       │   │   │   ├── yellow.png
│   │       │   │   │   └── yellow@2x.png
│   │       │   │   └── jquery
│   │       │   │       └── 1.9.1
│   │       │   │           ├── jquery.js
│   │       │   │           └── jquery.min.js
│   │       │   └── skin
│   │       │       └── default
│   │       │           ├── Thumbs.db
│   │       │           ├── acrossTab-bg.png
│   │       │           ├── acrossTab.png
│   │       │           ├── icon_arrow.png
│   │       │           └── skin.css
│   │       ├── index.jsp
│   │       ├── photo
│   │       │   ├── student.jpg
│   │       │   └── teacher.jpg
│   │       └── refresh.jsp
│   ├── 项目素材.zip
│   └── 验证码插件
│       └── CpachaUtil.java
├── 运行必读.txt
├── 运行环境.txt
├── 数据库文件
│   └── db_student_ssm.sql
└── 观看视频必读.txt

114 directories, 606 files


实例下载地址

ssm学生信息管理系统(源码+数据库+文档)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 初心yeti 发表于: 2020-07-29 00:47 23
这个实例中提到的视频在哪里呢

支持(0) 盖楼(回复)

第 2 楼 zlq825 发表于: 2021-03-04 11:26 04
视频在哪呢

支持(0) 盖楼(回复)

第 3 楼 阿玖35 发表于: 2022-10-16 21:46 00
视频在哪里呢

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有3条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警