实例介绍
使用myeclipse来开发的项目,压缩包中包括了,数据库,设计文档以及项目源代码。。作品十分简陋 简陋 简陋 重要事情说三遍,初学的作品,仅作参考。有任何问题欢迎提出,我会热心帮忙的。
【实例截图】
【核心代码】
在线考试系统(SSH框架)
├── README.md
├── src
│ ├── applicationContext.xml
│ ├── com
│ │ └── test
│ │ ├── action
│ │ │ ├── TestAction.java
│ │ │ └── userAction.java
│ │ ├── Aspect
│ │ │ └── LogAspect.java
│ │ ├── dao
│ │ │ ├── AnswerDaoImp.java
│ │ │ ├── AnswerDao.java
│ │ │ ├── DepartMentDaoImp.java
│ │ │ ├── DepartMentDao.java
│ │ │ ├── GradeDaoImp.java
│ │ │ ├── GradeDao.java
│ │ │ ├── ProfessionalDaoImp.java
│ │ │ ├── ProfessionalDao.java
│ │ │ ├── SubjectDaoImp.java
│ │ │ ├── SubjectDao.java
│ │ │ ├── TestDaoImp.java
│ │ │ ├── TestDao.java
│ │ │ ├── UserDaoImp.java
│ │ │ └── UserDao.java
│ │ ├── filter
│ │ │ └── MyFilter.java
│ │ ├── model
│ │ │ ├── Answer.hbm.xml
│ │ │ ├── Answer.java
│ │ │ ├── Department.hbm.xml
│ │ │ ├── Department.java
│ │ │ ├── Grade.hbm.xml
│ │ │ ├── Grade.java
│ │ │ ├── GradeJSon.java
│ │ │ ├── Loganderror.hbm.xml
│ │ │ ├── Loganderror.java
│ │ │ ├── Professional.hbm.xml
│ │ │ ├── Professional.java
│ │ │ ├── Student.hbm.xml
│ │ │ ├── Student.java
│ │ │ ├── StudentJson.java
│ │ │ ├── Subject.hbm.xml
│ │ │ ├── Subject.java
│ │ │ ├── Test.hbm.xml
│ │ │ ├── Test.java
│ │ │ ├── Users.hbm.xml
│ │ │ └── Users.java
│ │ └── service
│ │ ├── AnswerManage.java
│ │ ├── DepartmentManage.java
│ │ ├── Factory.java
│ │ ├── GradeManage.java
│ │ ├── ProfessionalManage.java
│ │ ├── SubjectManage.java
│ │ ├── TestManage.java
│ │ └── UserManageImp.java
│ ├── hibernate
│ │ └── HibernateSessionFactory.java
│ ├── hibernate.cfg.xml
│ └── struts.xml
├── WebRoot
│ ├── assets
│ │ ├── build.bat
│ │ ├── build.xml
│ │ ├── css
│ │ │ ├── bs3
│ │ │ │ ├── bui.css
│ │ │ │ ├── bui-min.css
│ │ │ │ ├── dpl.css
│ │ │ │ └── dpl-min.css
│ │ │ ├── build.xml
│ │ │ ├── bui-min.css
│ │ │ ├── dpl-min.css
│ │ │ ├── main.css
│ │ │ ├── main-min.css
│ │ │ ├── page.css
│ │ │ ├── page-min.css
│ │ │ └── prettify.css
│ │ ├── img
│ │ │ ├── calendar-200-300.gif
│ │ │ ├── chart.png
│ │ │ ├── checkbox.gif
│ │ │ ├── check_icon-100-100.gif
│ │ │ ├── hide_list.png
│ │ │ ├── icon-806-614.png
│ │ │ ├── left-slib.gif
│ │ │ ├── load-16-16.gif
│ │ │ ├── main-nav-bg1.png
│ │ │ ├── main-nav-bg.png
│ │ │ ├── menu-500-188.png
│ │ │ ├── menu.jpg
│ │ │ ├── nav.jpg
│ │ │ ├── nav_selected.png
│ │ │ ├── radio_icon-64-40.gif
│ │ │ ├── resource.jpg
│ │ │ ├── separator-2-340.gif
│ │ │ ├── sprite-469-300.png
│ │ │ ├── tab-140-120.gif
│ │ │ ├── table-191-450.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── tool-sprites.png
│ │ │ ├── tree.gif
│ │ │ ├── tree_icon-80-100.gif
│ │ │ ├── ui-img-view-height.jpg
│ │ │ ├── ui-img-view-height.png
│ │ │ ├── ui-img-view-width.jpg
│ │ │ ├── ui-img-view-width.png
│ │ │ └── white_sprite-469-300.png
│ │ ├── js
│ │ │ ├── bui.js
│ │ │ ├── bui-min.js
│ │ │ ├── chart-min.js
│ │ │ ├── common
│ │ │ │ ├── build.xml
│ │ │ │ ├── main.js
│ │ │ │ ├── main-min.js
│ │ │ │ ├── page.js
│ │ │ │ ├── page-min.js
│ │ │ │ ├── search.js
│ │ │ │ └── search-min.js
│ │ │ ├── config.js
│ │ │ ├── config-min.js
│ │ │ ├── extensions
│ │ │ │ ├── treegrid-min.js
│ │ │ │ └── treepicker-min.js
│ │ │ ├── graphic-min.js
│ │ │ ├── jquery-1.8.1.min.js
│ │ │ ├── module
│ │ │ │ └── build.xml
│ │ │ ├── prettify.js
│ │ │ └── slider-min.js
│ │ └── tools
│ │ ├── ant
│ │ │ ├── bin
│ │ │ │ ├── ant
│ │ │ │ ├── ant.bat
│ │ │ │ ├── ant.cmd
│ │ │ │ ├── antenv.cmd
│ │ │ │ ├── antRun
│ │ │ │ ├── antRun.bat
│ │ │ │ ├── antRun.pl
│ │ │ │ ├── complete-ant-cmd.pl
│ │ │ │ ├── envset.cmd
│ │ │ │ ├── lcp.bat
│ │ │ │ ├── runant.pl
│ │ │ │ ├── runant.py
│ │ │ │ └── runrc.cmd
│ │ │ ├── etc
│ │ │ │ ├── ant-bootstrap.jar
│ │ │ │ ├── changelog.xsl
│ │ │ │ ├── checkstyle
│ │ │ │ │ ├── checkstyle-frames.xsl
│ │ │ │ │ ├── checkstyle-text.xsl
│ │ │ │ │ └── checkstyle-xdoc.xsl
│ │ │ │ ├── coverage-frames.xsl
│ │ │ │ ├── jdepend-frames.xsl
│ │ │ │ ├── jdepend.xsl
│ │ │ │ ├── junit-frames-xalan1.xsl
│ │ │ │ ├── junit-frames.xsl
│ │ │ │ ├── junit-noframes.xsl
│ │ │ │ ├── log.xsl
│ │ │ │ ├── maudit-frames.xsl
│ │ │ │ ├── mmetrics-frames.xsl
│ │ │ │ └── tagdiff.xsl
│ │ │ ├── fetch.xml
│ │ │ ├── get-m2.xml
│ │ │ ├── INSTALL
│ │ │ ├── KEYS
│ │ │ ├── lib
│ │ │ │ ├── ant-antlr.jar
│ │ │ │ ├── ant-antlr.pom
│ │ │ │ ├── ant-apache-bcel.jar
│ │ │ │ ├── ant-apache-bcel.pom
│ │ │ │ ├── ant-apache-bsf.jar
│ │ │ │ ├── ant-apache-bsf.pom
│ │ │ │ ├── ant-apache-log4j.jar
│ │ │ │ ├── ant-apache-log4j.pom
│ │ │ │ ├── ant-apache-oro.jar
│ │ │ │ ├── ant-apache-oro.pom
│ │ │ │ ├── ant-apache-regexp.jar
│ │ │ │ ├── ant-apache-regexp.pom
│ │ │ │ ├── ant-apache-resolver.jar
│ │ │ │ ├── ant-apache-resolver.pom
│ │ │ │ ├── ant-apache-xalan2.jar
│ │ │ │ ├── ant-apache-xalan2.pom
│ │ │ │ ├── ant-commons-logging.jar
│ │ │ │ ├── ant-commons-logging.pom
│ │ │ │ ├── ant-commons-net.jar
│ │ │ │ ├── ant-commons-net.pom
│ │ │ │ ├── ant-contrib-1.0b3.jar
│ │ │ │ ├── ant-jai.jar
│ │ │ │ ├── ant-jai.pom
│ │ │ │ ├── ant.jar
│ │ │ │ ├── ant-javamail.jar
│ │ │ │ ├── ant-javamail.pom
│ │ │ │ ├── ant-jdepend.jar
│ │ │ │ ├── ant-jdepend.pom
│ │ │ │ ├── ant-jmf.jar
│ │ │ │ ├── ant-jmf.pom
│ │ │ │ ├── ant-jsch.jar
│ │ │ │ ├── ant-jsch.pom
│ │ │ │ ├── ant-junit4.jar
│ │ │ │ ├── ant-junit4.pom
│ │ │ │ ├── ant-junit.jar
│ │ │ │ ├── ant-junit.pom
│ │ │ │ ├── ant-launcher.jar
│ │ │ │ ├── ant-launcher.pom
│ │ │ │ ├── ant-netrexx.jar
│ │ │ │ ├── ant-netrexx.pom
│ │ │ │ ├── ant-nodeps.jar
│ │ │ │ ├── ant-nodeps.pom
│ │ │ │ ├── ant-parent.pom
│ │ │ │ ├── ant.pom
│ │ │ │ ├── ant-swing.jar
│ │ │ │ ├── ant-swing.pom
│ │ │ │ ├── ant-testutil.jar
│ │ │ │ ├── ant-testutil.pom
│ │ │ │ ├── bcel-5.1.jar
│ │ │ │ ├── commons-httpclient-3.0.1.jar
│ │ │ │ ├── commons-logging-1.0.4.jar
│ │ │ │ ├── ivy-1.3.1.jar
│ │ │ │ ├── libraries.properties
│ │ │ │ └── README
│ │ │ ├── LICENSE
│ │ │ ├── NOTICE
│ │ │ ├── README
│ │ │ └── WHATSNEW
│ │ └── yuicompressor.jar
│ ├── css
│ │ ├── add.css
│ │ ├── add-sco.css
│ │ ├── delete.css
│ │ ├── history-grade.css
│ │ ├── index.css
│ │ ├── layer.css
│ │ ├── message-border.css
│ │ ├── revise.css
│ │ ├── score.css
│ │ ├── stu-add.css
│ │ ├── stu-information.css
│ │ ├── stu-select.css
│ │ ├── text.css
│ │ ├── text-rule.css
│ │ ├── text-select.css
│ │ ├── text-update.css
│ │ └── update-information.css
│ ├── img
│ │ ├── hand.png
│ │ ├── left-handing.png
│ │ ├── left_hand.png
│ │ ├── password.png
│ │ ├── right_handing.png
│ │ ├── right_hand.png
│ │ ├── tou.png
│ │ └── username.png
│ ├── js
│ │ ├── jquery-1.8.3.min.js
│ │ ├── layer.js
│ │ └── text.js
│ ├── login.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── stu
│ │ ├── history-grade.jsp
│ │ ├── message-border.jsp
│ │ ├── search.jsp
│ │ ├── stu-index.jsp
│ │ ├── stu-information2.jsp
│ │ ├── stu-information.jsp
│ │ ├── text.jsp
│ │ ├── text-rule.jsp
│ │ └── update-information.jsp
│ ├── tea
│ │ ├── add.jsp
│ │ ├── add-sco.jsp
│ │ ├── answer-edit.jsp
│ │ ├── delete.jsp
│ │ ├── score.jsp
│ │ ├── sco-update.jsp
│ │ ├── stu-add.jsp
│ │ ├── stu-select.jsp
│ │ ├── stu-update.jsp
│ │ ├── tea-index.jsp
│ │ ├── text-add.jsp
│ │ ├── text-select.jsp
│ │ └── text-update.jsp
│ ├── WEB-INF
│ │ ├── classes
│ │ │ ├── applicationContext.xml
│ │ │ ├── com
│ │ │ │ └── test
│ │ │ │ ├── action
│ │ │ │ │ ├── TestAction.class
│ │ │ │ │ └── userAction.class
│ │ │ │ ├── Aspect
│ │ │ │ │ └── LogAspect.class
│ │ │ │ ├── dao
│ │ │ │ │ ├── AnswerDao.class
│ │ │ │ │ ├── AnswerDaoImp.class
│ │ │ │ │ ├── DepartMentDao.class
│ │ │ │ │ ├── DepartMentDaoImp.class
│ │ │ │ │ ├── GradeDao.class
│ │ │ │ │ ├── GradeDaoImp.class
│ │ │ │ │ ├── ProfessionalDao.class
│ │ │ │ │ ├── ProfessionalDaoImp.class
│ │ │ │ │ ├── SubjectDao.class
│ │ │ │ │ ├── SubjectDaoImp.class
│ │ │ │ │ ├── TestDao.class
│ │ │ │ │ ├── TestDaoImp.class
│ │ │ │ │ ├── UserDao.class
│ │ │ │ │ └── UserDaoImp.class
│ │ │ │ ├── filter
│ │ │ │ │ └── MyFilter.class
│ │ │ │ ├── model
│ │ │ │ │ ├── Answer.class
│ │ │ │ │ ├── Answer.hbm.xml
│ │ │ │ │ ├── Department.class
│ │ │ │ │ ├── Department.hbm.xml
│ │ │ │ │ ├── Grade.class
│ │ │ │ │ ├── Grade.hbm.xml
│ │ │ │ │ ├── GradeJSon.class
│ │ │ │ │ ├── Loganderror.class
│ │ │ │ │ ├── Loganderror.hbm.xml
│ │ │ │ │ ├── Professional.class
│ │ │ │ │ ├── Professional.hbm.xml
│ │ │ │ │ ├── Student.class
│ │ │ │ │ ├── Student.hbm.xml
│ │ │ │ │ ├── StudentJson.class
│ │ │ │ │ ├── Subject.class
│ │ │ │ │ ├── Subject.hbm.xml
│ │ │ │ │ ├── Test.class
│ │ │ │ │ ├── Test.hbm.xml
│ │ │ │ │ ├── Users.class
│ │ │ │ │ └── Users.hbm.xml
│ │ │ │ └── service
│ │ │ │ ├── AnswerManage.class
│ │ │ │ ├── DepartmentManage.class
│ │ │ │ ├── Factory.class
│ │ │ │ ├── GradeManage.class
│ │ │ │ ├── ProfessionalManage.class
│ │ │ │ ├── SubjectManage.class
│ │ │ │ ├── TestManage.class
│ │ │ │ └── UserManageImp.class
│ │ │ ├── hibernate
│ │ │ │ └── HibernateSessionFactory.class
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── struts.xml
│ │ ├── lib
│ │ │ ├── commons-beanutils-1.7.0.jar
│ │ │ ├── commons-collections-3.2.1.jar
│ │ │ ├── commons-httpclient-3.1.jar
│ │ │ ├── commons-lang-2.3.jar
│ │ │ ├── commons-logging-1.1.1.jar
│ │ │ ├── ezmorph-1.0.3.jar
│ │ │ ├── json-lib-2.4-jdk15.jar
│ │ │ ├── mysql-connector-java-5.1.27-bin.jar
│ │ │ └── standard.jar
│ │ ├── spring-form.tld
│ │ ├── spring.tld
│ │ └── web.xml
│ └── 项目文档
│ ├── 在线考试系统.sql
│ └── 学生在线考试系统项目设计文档.doc
├── 在线考试系统.sql
└── 学生在线考试系统项目设计文档.doc
44 directories, 322 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论