嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
1.打开eclipse导入项目
2.修改c3p0-config.xml中数据库连接密码
3.新建ssms数据库,并导入ssms.sql文件还原数据。
学生信息管理系统v1.0
├── ssms.sql
├── 项目源码
│ └── studentinfo
│ ├── 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
│ │ │ │ ├── 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
│ │ │ │ ├── servlet-api.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
│ ├── build
│ │ └── classes
│ │ ├── c3p0-config.xml
│ │ └── com
│ │ └── lizhou
│ │ ├── bean
│ │ │ ├── Clazz.class
│ │ │ ├── Course.class
│ │ │ ├── CourseItem.class
│ │ │ ├── EScore.class
│ │ │ ├── Exam.class
│ │ │ ├── Grade.class
│ │ │ ├── Page.class
│ │ │ ├── Student.class
│ │ │ ├── SystemInfo.class
│ │ │ ├── Teacher.class
│ │ │ └── User.class
│ │ ├── dao
│ │ │ ├── impl
│ │ │ │ ├── BaseDaoImpl.class
│ │ │ │ ├── ClazzDaoImpl.class
│ │ │ │ ├── ExamDaoImpl.class
│ │ │ │ ├── PhotoDaoImpl.class
│ │ │ │ ├── ScoreDaoImpl.class
│ │ │ │ ├── StudentDaoImpl.class
│ │ │ │ ├── SystemDaoImpl.class
│ │ │ │ └── TeacherDaoImpl.class
│ │ │ └── inter
│ │ │ ├── BaseDaoInter.class
│ │ │ ├── ClazzDaoInter.class
│ │ │ ├── ExamDaoInter.class
│ │ │ ├── PhotoDaoInter.class
│ │ │ ├── ScoreDaoInter.class
│ │ │ ├── StudentDaoInter.class
│ │ │ ├── SystemDaoInter.class
│ │ │ └── TeacherDaoInter.class
│ │ ├── filter
│ │ │ ├── EncodeFilter.class
│ │ │ └── VisitFilter.class
│ │ ├── listener
│ │ │ └── SystemInitListener.class
│ │ ├── service
│ │ │ ├── ClazzService.class
│ │ │ ├── CourseService.class
│ │ │ ├── ExamService.class
│ │ │ ├── GradeService.class
│ │ │ ├── PhotoService.class
│ │ │ ├── ScoreService.class
│ │ │ ├── StudentService.class
│ │ │ ├── SystemService.class
│ │ │ └── TeacherService.class
│ │ ├── servlet
│ │ │ ├── ClazzServlet.class
│ │ │ ├── CourseServlet.class
│ │ │ ├── ExamServlet.class
│ │ │ ├── GradeServlet.class
│ │ │ ├── LoginServlet.class
│ │ │ ├── PhotoServlet.class
│ │ │ ├── ScoreServlet.class
│ │ │ ├── StudentServlet.class
│ │ │ ├── SystemServlet.class
│ │ │ └── TeacherServlet.class
│ │ └── tools
│ │ ├── ExcelTool.class
│ │ ├── MysqlTool.class
│ │ ├── StringTool.class
│ │ └── VCodeGenerator.class
│ └── src
│ ├── c3p0-config.xml
│ └── com
│ └── lizhou
│ ├── bean
│ │ ├── Clazz.java
│ │ ├── Course.java
│ │ ├── CourseItem.java
│ │ ├── EScore.java
│ │ ├── Exam.java
│ │ ├── Grade.java
│ │ ├── Page.java
│ │ ├── Student.java
│ │ ├── SystemInfo.java
│ │ ├── Teacher.java
│ │ └── User.java
│ ├── dao
│ │ ├── impl
│ │ │ ├── BaseDaoImpl.java
│ │ │ ├── ClazzDaoImpl.java
│ │ │ ├── ExamDaoImpl.java
│ │ │ ├── PhotoDaoImpl.java
│ │ │ ├── ScoreDaoImpl.java
│ │ │ ├── StudentDaoImpl.java
│ │ │ ├── SystemDaoImpl.java
│ │ │ └── TeacherDaoImpl.java
│ │ └── inter
│ │ ├── BaseDaoInter.java
│ │ ├── ClazzDaoInter.java
│ │ ├── ExamDaoInter.java
│ │ ├── PhotoDaoInter.java
│ │ ├── ScoreDaoInter.java
│ │ ├── StudentDaoInter.java
│ │ ├── SystemDaoInter.java
│ │ └── TeacherDaoInter.java
│ ├── filter
│ │ ├── EncodeFilter.java
│ │ └── VisitFilter.java
│ ├── listener
│ │ └── SystemInitListener.java
│ ├── service
│ │ ├── ClazzService.java
│ │ ├── CourseService.java
│ │ ├── ExamService.java
│ │ ├── GradeService.java
│ │ ├── PhotoService.java
│ │ ├── ScoreService.java
│ │ ├── StudentService.java
│ │ ├── SystemService.java
│ │ └── TeacherService.java
│ ├── servlet
│ │ ├── ClazzServlet.java
│ │ ├── CourseServlet.java
│ │ ├── ExamServlet.java
│ │ ├── GradeServlet.java
│ │ ├── LoginServlet.java
│ │ ├── PhotoServlet.java
│ │ ├── ScoreServlet.java
│ │ ├── StudentServlet.java
│ │ ├── SystemServlet.java
│ │ └── TeacherServlet.java
│ └── tools
│ ├── ExcelTool.java
│ ├── MysqlTool.java
│ ├── StringTool.java
│ └── VCodeGenerator.java
├── 免费咨询.jpg
├── 使用说明.txt
└── 随意打赏,谢谢支持.jpg
58 directories, 344 files