实例介绍
使用SSH框架实现学生选课系统(包含完整源代码以及数据库文件)
【实例截图】
【核心代码】
SSH实现学生选课系统(包含完整源代码以及数据库文件)
└── SSH实现学生选课系统(包含完整源代码以及数据库文件)
├── StudentCourse.mdf
├── StudentCourse_log.ldf
└── StudentSelectCourse
├── WebRoot
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── WEB-INF
│ │ ├── classes
│ │ │ ├── applicationContext.xml
│ │ │ ├── com
│ │ │ │ └── bzu
│ │ │ │ ├── Filter
│ │ │ │ │ ├── BehindFilter.class
│ │ │ │ │ └── FrontFilter.class
│ │ │ │ ├── action
│ │ │ │ │ ├── AdminerAction.class
│ │ │ │ │ ├── CourseAction.class
│ │ │ │ │ ├── CourseListAction.class
│ │ │ │ │ ├── ExecptionAction.class
│ │ │ │ │ ├── IndexAction.class
│ │ │ │ │ ├── StudentAction.class
│ │ │ │ │ ├── StudentAction_en_US.properties
│ │ │ │ │ ├── StudentAction_zh_CN.properties
│ │ │ │ │ ├── StudentListAction.class
│ │ │ │ │ └── TeacherAction.class
│ │ │ │ ├── dao
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── AdminerDao.class
│ │ │ │ │ │ ├── CourseDao.class
│ │ │ │ │ │ ├── StudentDao.class
│ │ │ │ │ │ └── TeacherDao.class
│ │ │ │ │ └── inter
│ │ │ │ │ ├── AdminDaoInter.class
│ │ │ │ │ ├── CourseDaoInter.class
│ │ │ │ │ ├── StudentDaoInter.class
│ │ │ │ │ └── TeacherDaoInter.class
│ │ │ │ ├── entity
│ │ │ │ │ ├── Adminer.class
│ │ │ │ │ ├── Adminer.hbm.xml
│ │ │ │ │ ├── Course.class
│ │ │ │ │ ├── Course.hbm.xml
│ │ │ │ │ ├── Student.class
│ │ │ │ │ ├── Student.hbm.xml
│ │ │ │ │ ├── Teacher.class
│ │ │ │ │ └── Teacher.hbm.xml
│ │ │ │ └── util
│ │ │ │ ├── HibernateUtil.class
│ │ │ │ ├── MD5Encryption.class
│ │ │ │ ├── Runner2.class
│ │ │ │ └── ThreadTest2.class
│ │ │ ├── ehcache.xml
│ │ │ └── struts.xml
│ │ ├── lib
│ │ │ ├── antlr-2.7.6.jar
│ │ │ ├── aspectjrt.jar
│ │ │ ├── aspectjweaver.jar
│ │ │ ├── cglib-nodep-2.1_3.jar
│ │ │ ├── common-annotations.jar
│ │ │ ├── commons-collections-3.1.jar
│ │ │ ├── commons-dbcp.jar
│ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ ├── commons-io-1.3.2.jar
│ │ │ ├── commons-logging-1.1.jar
│ │ │ ├── commons-pool.jar
│ │ │ ├── dom4j-1.6.1.jar
│ │ │ ├── ehcache-1.6.2.jar
│ │ │ ├── ejb3-persistence.jar
│ │ │ ├── freemarker-2.3.13.jar
│ │ │ ├── hibernate-annotations.jar
│ │ │ ├── hibernate-commons-annotations.jar
│ │ │ ├── hibernate3.jar
│ │ │ ├── javassist-3.9.0.GA.jar
│ │ │ ├── jta-1.1.jar
│ │ │ ├── junit-4.5.jar
│ │ │ ├── log4j-1.2.15.jar
│ │ │ ├── mysql-connector-java-3.1.13-bin.jar
│ │ │ ├── ognl-2.6.11.jar
│ │ │ ├── oscache-2.4.1.jar
│ │ │ ├── slf4j-api-1.5.8.jar
│ │ │ ├── slf4j-log4j12-1.5.8.jar
│ │ │ ├── slf4j-nop-1.5.8.jar
│ │ │ ├── spring.jar
│ │ │ ├── sqljdbc.jar
│ │ │ ├── struts2-core-2.1.6.jar
│ │ │ ├── struts2-spring-plugin-2.1.6.jar
│ │ │ └── xwork-2.1.2.jar
│ │ └── web.xml
│ ├── css
│ │ ├── behindlogin.css
│ │ ├── forDir.css
│ │ ├── general.css
│ │ ├── jquery-ui-1.8.12.css
│ │ ├── jquery-ui-1.8.20.custom.css
│ │ ├── manager.css
│ │ └── styles.css
│ ├── error.jsp
│ ├── images
│ │ ├── 404.jpg
│ │ ├── bg.jpg
│ │ ├── delete.png
│ │ ├── edit.png
│ │ ├── edit2.png
│ │ ├── head.png
│ │ ├── index.jpg
│ │ ├── login
│ │ │ ├── bu.png
│ │ │ └── loginbg.png
│ │ ├── loginbg.png
│ │ ├── loginfrbg.jpg
│ │ ├── logo.jpg
│ │ ├── manage.png
│ │ ├── our.png
│ │ ├── ourbg.png
│ │ ├── select.jpg
│ │ ├── select.png
│ │ ├── stu_login.png
│ │ ├── ui-bg_glass_55_fcf0ba_1x400.png
│ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png
│ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png
│ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png
│ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png
│ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png
│ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png
│ │ ├── ui-bg_highlight-soft_95_ffedad_1x100.png
│ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png
│ │ ├── ui-icons_808080_256x240.png
│ │ ├── ui-icons_847e71_256x240.png
│ │ ├── ui-icons_8dc262_256x240.png
│ │ ├── ui-icons_cd0a0a_256x240.png
│ │ ├── ui-icons_eeeeee_256x240.png
│ │ └── ui-icons_ffffff_256x240.png
│ ├── inc
│ │ ├── css.css
│ │ └── style.css
│ ├── index.jsp
│ ├── js
│ │ ├── accordian.pack.js
│ │ ├── javaScript.js
│ │ ├── jquery-1.7.1.js
│ │ ├── jquery-1.7.2.min.js
│ │ ├── jquery-ui-1.8.20.custom.min.js
│ │ ├── jquery.metadata.js
│ │ ├── jquery.ui.accordion.js
│ │ ├── jquery.ui.core.js
│ │ ├── jquery.ui.widget.js
│ │ ├── jquery.validate.js
│ │ ├── manageModel.js
│ │ └── myJs
│ │ └── for_login.js
│ ├── jsp
│ │ ├── behind
│ │ │ ├── add_admin.jsp
│ │ │ ├── add_student.jsp
│ │ │ ├── admin_info.jsp
│ │ │ ├── behindcourse_list.jsp
│ │ │ ├── behinddefault.jsp
│ │ │ ├── behindhead.jsp
│ │ │ ├── behindleft.jsp
│ │ │ ├── behindlogin.jsp
│ │ │ ├── behindright.jsp
│ │ │ ├── right.jsp
│ │ │ ├── stu_list.jsp
│ │ │ ├── teacher_info.jsp
│ │ │ ├── update_admin_info.jsp
│ │ │ └── update_course.jsp
│ │ └── front
│ │ ├── default.jsp
│ │ ├── frontcourse_list.jsp
│ │ ├── left.jsp
│ │ ├── login.jsp
│ │ ├── right.jsp
│ │ ├── select_course.jsp
│ │ ├── stu_info.jsp
│ │ ├── top.jsp
│ │ └── update_info.jsp
│ ├── left.files
│ │ ├── admin_left_1.gif
│ │ ├── admin_left_2.gif
│ │ ├── admin_left_9.gif
│ │ ├── images
│ │ │ ├── graph.gif
│ │ │ ├── index_16.gif
│ │ │ ├── index_18.gif
│ │ │ ├── index_19.gif
│ │ │ ├── index_20.gif
│ │ │ ├── index_21.gif
│ │ │ ├── index_22.gif
│ │ │ ├── index_23.gif
│ │ │ └── spacer.gif
│ │ ├── title.gif
│ │ ├── title.jpg
│ │ └── titles.gif
│ └── upload
│ ├── hzb.jpg
│ └── zyl.jpg
├── doc
│ ├── allclasses-frame.html
│ ├── allclasses-noframe.html
│ ├── com
│ │ └── bzu
│ │ ├── Filter
│ │ │ ├── BehindFilter.html
│ │ │ ├── FrontFilter.html
│ │ │ ├── class-use
│ │ │ │ ├── BehindFilter.html
│ │ │ │ └── FrontFilter.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── action
│ │ │ ├── AdminerAction.html
│ │ │ ├── CourseAction.html
│ │ │ ├── CourseListAction.html
│ │ │ ├── ExecptionAction.html
│ │ │ ├── IndexAction.html
│ │ │ ├── StudentAction.html
│ │ │ ├── StudentListAction.html
│ │ │ ├── class-use
│ │ │ │ ├── AdminerAction.html
│ │ │ │ ├── CourseAction.html
│ │ │ │ ├── CourseListAction.html
│ │ │ │ ├── ExecptionAction.html
│ │ │ │ ├── IndexAction.html
│ │ │ │ ├── StudentAction.html
│ │ │ │ └── StudentListAction.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── dao
│ │ │ ├── impl
│ │ │ │ ├── AdminerDao.html
│ │ │ │ ├── CourseDao.html
│ │ │ │ ├── StudentDao.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AdminerDao.html
│ │ │ │ │ ├── CourseDao.html
│ │ │ │ │ └── StudentDao.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── inter
│ │ │ ├── AdminDaoInter.html
│ │ │ ├── CourseDaoInter.html
│ │ │ ├── StudentDaoInter.html
│ │ │ ├── class-use
│ │ │ │ ├── AdminDaoInter.html
│ │ │ │ ├── CourseDaoInter.html
│ │ │ │ └── StudentDaoInter.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── entity
│ │ │ ├── Adminer.html
│ │ │ ├── Course.html
│ │ │ ├── Student.html
│ │ │ ├── class-use
│ │ │ │ ├── Adminer.html
│ │ │ │ ├── Course.html
│ │ │ │ └── Student.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ └── util
│ │ ├── HibernateUtil.html
│ │ ├── MD5Encryption.html
│ │ ├── Test.html
│ │ ├── ThreadTest2.html
│ │ ├── class-use
│ │ │ ├── HibernateUtil.html
│ │ │ ├── MD5Encryption.html
│ │ │ ├── Test.html
│ │ │ └── ThreadTest2.html
│ │ ├── package-frame.html
│ │ ├── package-summary.html
│ │ ├── package-tree.html
│ │ └── package-use.html
│ ├── constant-values.html
│ ├── deprecated-list.html
│ ├── help-doc.html
│ ├── index-files
│ │ ├── index-1.html
│ │ ├── index-10.html
│ │ ├── index-11.html
│ │ ├── index-12.html
│ │ ├── index-13.html
│ │ ├── index-14.html
│ │ ├── index-15.html
│ │ ├── index-2.html
│ │ ├── index-3.html
│ │ ├── index-4.html
│ │ ├── index-5.html
│ │ ├── index-6.html
│ │ ├── index-7.html
│ │ ├── index-8.html
│ │ └── index-9.html
│ ├── index.html
│ ├── overview-frame.html
│ ├── overview-summary.html
│ ├── overview-tree.html
│ ├── package-list
│ ├── resources
│ │ └── inherit.gif
│ ├── serialized-form.html
│ └── stylesheet.css
└── src
├── applicationContext.xml
├── com
│ └── bzu
│ ├── Filter
│ │ ├── BehindFilter.java
│ │ └── FrontFilter.java
│ ├── action
│ │ ├── AdminerAction.java
│ │ ├── CourseAction.java
│ │ ├── CourseListAction.java
│ │ ├── ExecptionAction.java
│ │ ├── IndexAction.java
│ │ ├── StudentAction.java
│ │ ├── StudentAction_en_US.properties
│ │ ├── StudentAction_zh_CN.properties
│ │ ├── StudentListAction.java
│ │ └── TeacherAction.java
│ ├── dao
│ │ ├── impl
│ │ │ ├── AdminerDao.java
│ │ │ ├── CourseDao.java
│ │ │ ├── StudentDao.java
│ │ │ └── TeacherDao.java
│ │ └── inter
│ │ ├── AdminDaoInter.java
│ │ ├── CourseDaoInter.java
│ │ ├── StudentDaoInter.java
│ │ └── TeacherDaoInter.java
│ ├── entity
│ │ ├── Adminer.hbm.xml
│ │ ├── Adminer.java
│ │ ├── Course.hbm.xml
│ │ ├── Course.java
│ │ ├── Student.hbm.xml
│ │ ├── Student.java
│ │ ├── Teacher.hbm.xml
│ │ └── Teacher.java
│ └── util
│ ├── HibernateUtil.java
│ ├── MD5Encryption.java
│ └── ThreadTest2.java
├── ehcache.xml
└── struts.xml
56 directories, 298 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论