实例介绍
本科时用的毕设,具有自动组题,以及考试分析等功能,还具有会员等具体的功能,用于本科毕设
【实例截图】
【核心代码】
2014141402_曹志成毕设
└── 2014141402_曹志成毕设
└── 基于JSP的考试管理系统
├── 文档
│ ├── 2014141402曹志成论文.docx
│ ├── 基于JSP的考试系统设计与实现(简洁).pdf
│ ├── 任务书-曹志成.doc
│ ├── 开题报告-曹志成.doc
│ └── 选题审批表-曹志成.doc
└── 系统
└── czcExam
├── doc
│ ├── 111.png
│ ├── 222.jpg
│ └── examxx.sql
├── knowledge
├── pom.xml
├── readme.md
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── extr
│ │ │ ├── controller
│ │ │ │ ├── BaseController.java
│ │ │ │ ├── CommentController.java
│ │ │ │ ├── ExamController.java
│ │ │ │ ├── ExamPaperController.java
│ │ │ │ ├── PracticeController.java
│ │ │ │ ├── QuestionController.java
│ │ │ │ ├── SystemConfigController.java
│ │ │ │ ├── UserCenterController.java
│ │ │ │ ├── UserController.java
│ │ │ │ └── domain
│ │ │ │ ├── AnswerSheetItem.java
│ │ │ │ ├── ExamFinishParam.java
│ │ │ │ ├── Message.java
│ │ │ │ ├── PaperCreatorParam.java
│ │ │ │ ├── QuestionFilter.java
│ │ │ │ ├── QuestionImproveResult.java
│ │ │ │ └── QuestionQueryResult.java
│ │ │ ├── domain
│ │ │ │ ├── exam
│ │ │ │ │ ├── Exam.java
│ │ │ │ │ ├── ExamHistory.java
│ │ │ │ │ ├── ExamPaper.java
│ │ │ │ │ ├── Paper.java
│ │ │ │ │ └── PracticePaper.java
│ │ │ │ ├── practice
│ │ │ │ │ └── SubmitParam.java
│ │ │ │ ├── question
│ │ │ │ │ ├── Comment.java
│ │ │ │ │ ├── Comments.java
│ │ │ │ │ ├── Field.java
│ │ │ │ │ ├── KnowledgePoint.java
│ │ │ │ │ ├── Question.java
│ │ │ │ │ ├── QuestionContent.java
│ │ │ │ │ ├── QuestionHistory.java
│ │ │ │ │ ├── QuestionStruts.java
│ │ │ │ │ ├── QuestionTag.java
│ │ │ │ │ ├── QuestionType.java
│ │ │ │ │ ├── Tag.java
│ │ │ │ │ └── UserQuestionHistory.java
│ │ │ │ └── user
│ │ │ │ ├── Group.java
│ │ │ │ ├── Role.java
│ │ │ │ └── User.java
│ │ │ ├── file
│ │ │ │ └── util
│ │ │ │ ├── ExcelUtil.java
│ │ │ │ ├── FileUploadUtil.java
│ │ │ │ ├── Html2Doc.java
│ │ │ │ ├── JOD4DocToPDF.java
│ │ │ │ ├── PdfToSwf.java
│ │ │ │ └── PropertyReaderUtil.java
│ │ │ ├── persistence
│ │ │ │ ├── CommentMapper.java
│ │ │ │ ├── ExamMapper.java
│ │ │ │ ├── ExamPaperMapper.java
│ │ │ │ ├── PracticeMapper.java
│ │ │ │ ├── QuestionMapper.java
│ │ │ │ └── UserMapper.java
│ │ │ ├── security
│ │ │ │ ├── UserDetailsServiceImpl.java
│ │ │ │ ├── UserInfo.java
│ │ │ │ ├── filter
│ │ │ │ │ └── AuthenticationFilter.java
│ │ │ │ └── handler
│ │ │ │ └── ExtrAuthenticationSuccessHandler.java
│ │ │ ├── service
│ │ │ │ ├── CommentService.java
│ │ │ │ ├── CommentServiceImpl.java
│ │ │ │ ├── ExamService.java
│ │ │ │ ├── ExamServiceImpl.java
│ │ │ │ ├── PracticeService.java
│ │ │ │ ├── PracticeServiceImpl.java
│ │ │ │ ├── QuestionService.java
│ │ │ │ ├── QuestionServiceImpl.java
│ │ │ │ ├── UserService.java
│ │ │ │ └── UserServiceImpl.java
│ │ │ └── util
│ │ │ ├── EhcacheTest.java
│ │ │ ├── MyInterceptor.java
│ │ │ ├── Page.java
│ │ │ ├── PagingUtil.java
│ │ │ ├── Population.java
│ │ │ ├── QuestionAdapter.java
│ │ │ ├── ReflectUtil.java
│ │ │ ├── Roulette.java
│ │ │ ├── StandardPasswordEncoderForSha1.java
│ │ │ ├── StreamGobbler.java
│ │ │ ├── UserInfoUtil.java
│ │ │ └── xml
│ │ │ └── Object2Xml.java
│ │ ├── resources
│ │ │ ├── com
│ │ │ │ └── extr
│ │ │ │ └── persistence
│ │ │ │ ├── CommentMapper.xml
│ │ │ │ ├── ExamMapper.xml
│ │ │ │ ├── ExamPaperMapper.xml
│ │ │ │ ├── PracticeMapper.xml
│ │ │ │ ├── QuestionMapper.xml
│ │ │ │ └── UserMapper.xml
│ │ │ ├── ehcache.xml
│ │ │ ├── ehcache.xsd
│ │ │ └── log4j.properties
│ │ └── webapp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── spring
│ │ │ │ ├── appServlet
│ │ │ │ │ ├── controllers.xml
│ │ │ │ │ └── servlet-context.xml
│ │ │ │ ├── root-context.xml
│ │ │ │ ├── scheduler.xml
│ │ │ │ └── security.xml
│ │ │ ├── views
│ │ │ │ ├── admin
│ │ │ │ │ ├── add-admin.jsp
│ │ │ │ │ ├── add-field.jsp
│ │ │ │ │ ├── add-point.jsp
│ │ │ │ │ ├── add-user.jsp
│ │ │ │ │ ├── exam-report.jsp
│ │ │ │ │ ├── exampaper-add.jsp
│ │ │ │ │ ├── exampaper-edit.jsp
│ │ │ │ │ ├── exampaper-list.jsp
│ │ │ │ │ ├── exampaper-preview.jsp
│ │ │ │ │ ├── exampaper-upd.jsp
│ │ │ │ │ ├── field-list.jsp
│ │ │ │ │ ├── point-list.jsp
│ │ │ │ │ ├── question-add.jsp
│ │ │ │ │ ├── question-import.jsp
│ │ │ │ │ ├── question-list-dialog.jsp
│ │ │ │ │ ├── question-list.jsp
│ │ │ │ │ ├── question-preview.jsp
│ │ │ │ │ ├── sys-admin-list.jsp
│ │ │ │ │ ├── sys-backup.jsp
│ │ │ │ │ ├── sys-backup2.jsp
│ │ │ │ │ ├── tmp.jsp
│ │ │ │ │ └── user-list.jsp
│ │ │ │ ├── home.jsp
│ │ │ │ ├── login.jsp
│ │ │ │ ├── regist-success.jsp
│ │ │ │ ├── register.jsp
│ │ │ │ ├── start-exam.jsp
│ │ │ │ ├── student
│ │ │ │ │ ├── analysis.jsp
│ │ │ │ │ ├── change-password.jsp
│ │ │ │ │ ├── exam-finish-report.jsp
│ │ │ │ │ ├── exam-finished.jsp
│ │ │ │ │ ├── exam-history.jsp
│ │ │ │ │ ├── examing.jsp
│ │ │ │ │ ├── paper-exam-finish-report.jsp
│ │ │ │ │ ├── paper-exam-finished.jsp
│ │ │ │ │ ├── practice-improve-qh.jsp
│ │ │ │ │ ├── practice-improve.jsp
│ │ │ │ │ ├── practice-testing.jsp
│ │ │ │ │ ├── setting.jsp
│ │ │ │ │ └── usercenter.jsp
│ │ │ │ └── teacher
│ │ │ │ ├── add-tag.jsp
│ │ │ │ └── tag-list.jsp
│ │ │ └── web.xml
│ │ └── resources
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap-huan.css
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ └── bootstrap.min.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ └── bootstrap.min.js
│ │ ├── chart
│ │ │ ├── less
│ │ │ │ └── morris.core.less
│ │ │ ├── lib
│ │ │ │ ├── morris.area.coffee
│ │ │ │ ├── morris.bar.coffee
│ │ │ │ ├── morris.coffee
│ │ │ │ ├── morris.donut.coffee
│ │ │ │ ├── morris.grid.coffee
│ │ │ │ ├── morris.hover.coffee
│ │ │ │ └── morris.line.coffee
│ │ │ ├── morris.css
│ │ │ ├── morris.js
│ │ │ ├── morris.min.js
│ │ │ └── raphael-min.js
│ │ ├── chartjs
│ │ │ ├── Chart.js
│ │ │ ├── Chart.min.js
│ │ │ ├── bower.json
│ │ │ ├── excanvas.js
│ │ │ ├── gulpfile.js
│ │ │ └── package.json
│ │ ├── css
│ │ │ ├── exam.css
│ │ │ ├── images
│ │ │ │ ├── bg.png
│ │ │ │ ├── error.png
│ │ │ │ ├── icon20_20.png
│ │ │ │ ├── info.png
│ │ │ │ ├── pattern-1.png
│ │ │ │ ├── success.png
│ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png
│ │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png
│ │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png
│ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png
│ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png
│ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png
│ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png
│ │ │ │ ├── ui-icons_0073ea_256x240.png
│ │ │ │ ├── ui-icons_3383bb_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_4eb305_256x240.png
│ │ │ │ ├── ui-icons_4eb305_256x240_2.png
│ │ │ │ ├── ui-icons_4eb305_256x240_3.png
│ │ │ │ ├── ui-icons_70b2e1_256x240.png
│ │ │ │ ├── ui-icons_fbc856_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui-1.9.2.custom.min.css
│ │ │ ├── jquery.placeholder.min.css
│ │ │ ├── question-add.css
│ │ │ └── style.css
│ │ ├── files
│ │ │ └── test.mp4
│ │ ├── flash
│ │ │ ├── beelden.zip
│ │ │ └── player.swf
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ ├── less
│ │ │ │ ├── bordered-pulled.less
│ │ │ │ ├── core.less
│ │ │ │ ├── fixed-width.less
│ │ │ │ ├── font-awesome.less
│ │ │ │ ├── icons.less
│ │ │ │ ├── larger.less
│ │ │ │ ├── list.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── path.less
│ │ │ │ ├── rotated-flipped.less
│ │ │ │ ├── spinning.less
│ │ │ │ ├── stacked.less
│ │ │ │ └── variables.less
│ │ │ └── scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _core.scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _icons.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _list.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _path.scss
│ │ │ ├── _rotated-flipped.scss
│ │ │ ├── _spinning.scss
│ │ │ ├── _stacked.scss
│ │ │ ├── _variables.scss
│ │ │ └── font-awesome.scss
│ │ ├── images
│ │ │ ├── ad.jpg
│ │ │ ├── ad.png
│ │ │ ├── error.png
│ │ │ ├── favicon.ico
│ │ │ ├── icon-all.png
│ │ │ ├── icon20_20.png
│ │ │ ├── info.png
│ │ │ ├── loading.gif
│ │ │ ├── logo-s.png
│ │ │ ├── logo.png
│ │ │ ├── photo.jpg
│ │ │ ├── simplest.png
│ │ │ ├── success.png
│ │ │ ├── training-content.png
│ │ │ └── user.png
│ │ ├── js
│ │ │ ├── add-field.js
│ │ │ ├── add-point.js
│ │ │ ├── add-tag.js
│ │ │ ├── all.js
│ │ │ ├── comment.js
│ │ │ ├── exam-finished.js
│ │ │ ├── examing.js
│ │ │ ├── exampaper-add.js
│ │ │ ├── exampaper-edit.js
│ │ │ ├── exampaper-list.js
│ │ │ ├── exampaper-preview.js
│ │ │ ├── excanvas.js
│ │ │ ├── field-2-point.js
│ │ │ ├── field-list.js
│ │ │ ├── jquery
│ │ │ │ ├── jquery-1.9.0.min.js
│ │ │ │ └── jquery-ui-1.9.2.custom.min.js
│ │ │ ├── modify-user.js
│ │ │ ├── paper-examing.js
│ │ │ ├── point-list.js
│ │ │ ├── point-select.js
│ │ │ ├── practice-improve-qh.js
│ │ │ ├── practice-improve.js
│ │ │ ├── practice-testing.js
│ │ │ ├── pwd-change.js
│ │ │ ├── question-add.js
│ │ │ ├── question-import.js
│ │ │ ├── question-lib.js
│ │ │ ├── question-list.js
│ │ │ ├── question-list4dialog.js
│ │ │ ├── question-upload-img.js
│ │ │ ├── register.js
│ │ │ ├── uploadify
│ │ │ │ ├── Change Log.txt
│ │ │ │ ├── __MACOSX
│ │ │ │ ├── check-exists.php
│ │ │ │ ├── index.php
│ │ │ │ ├── jquery.uploadify.js
│ │ │ │ ├── jquery.uploadify.min.js
│ │ │ │ ├── jquery.uploadify3.1Fixed.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── uploadify-cancel.png
│ │ │ │ ├── uploadify.css
│ │ │ │ ├── uploadify.php
│ │ │ │ └── uploadify.swf
│ │ │ └── util
│ │ │ ├── inline-form.js
│ │ │ ├── jquery.fullscreen-0.3.5.min.js
│ │ │ ├── question-4cep-table.js
│ │ │ ├── question-admin-table.js
│ │ │ ├── question-teacher-table.js
│ │ │ └── tree.js
│ │ └── template
│ │ ├── question.xlsx
│ │ └── user.xls
│ └── test
│ └── java
│ └── com
│ └── extr
│ ├── file
│ │ └── util
│ │ ├── EncodeTest.java
│ │ ├── FileUploadTest.java
│ │ ├── PSOTest1.java
│ │ ├── Pdf2SwfTest.java
│ │ └── RouletteTest.java
│ └── service
│ └── PracticeServiceTest.java
└── target
├── classes
│ ├── com
│ │ └── extr
│ │ ├── controller
│ │ │ ├── BaseController$UserType.class
│ │ │ ├── BaseController.class
│ │ │ ├── CommentController.class
│ │ │ ├── ExamController$ReportResult.class
│ │ │ ├── ExamController.class
│ │ │ ├── ExamPaperController.class
│ │ │ ├── PracticeController.class
│ │ │ ├── QuestionController.class
│ │ │ ├── SystemConfigController.class
│ │ │ ├── UserCenterController$KnowledgePointAnalysisResult.class
│ │ │ ├── UserCenterController$StatisticsResult.class
│ │ │ ├── UserCenterController$TypeAnalysis.class
│ │ │ ├── UserCenterController.class
│ │ │ ├── UserController.class
│ │ │ └── domain
│ │ │ ├── AnswerSheetItem.class
│ │ │ ├── ExamFinishParam.class
│ │ │ ├── Message.class
│ │ │ ├── PaperCreatorParam.class
│ │ │ ├── QuestionFilter.class
│ │ │ ├── QuestionImproveResult.class
│ │ │ └── QuestionQueryResult.class
│ │ ├── domain
│ │ │ ├── exam
│ │ │ │ ├── Exam.class
│ │ │ │ ├── ExamHistory.class
│ │ │ │ ├── ExamPaper.class
│ │ │ │ ├── Paper.class
│ │ │ │ └── PracticePaper.class
│ │ │ ├── practice
│ │ │ │ └── SubmitParam.class
│ │ │ ├── question
│ │ │ │ ├── Comment.class
│ │ │ │ ├── Comments.class
│ │ │ │ ├── Field.class
│ │ │ │ ├── KnowledgePoint.class
│ │ │ │ ├── Question.class
│ │ │ │ ├── QuestionContent.class
│ │ │ │ ├── QuestionHistory.class
│ │ │ │ ├── QuestionStruts.class
│ │ │ │ ├── QuestionTag.class
│ │ │ │ ├── QuestionType.class
│ │ │ │ ├── Tag.class
│ │ │ │ └── UserQuestionHistory.class
│ │ │ └── user
│ │ │ ├── Group.class
│ │ │ ├── Role.class
│ │ │ └── User.class
│ │ ├── file
│ │ │ └── util
│ │ │ ├── ExcelUtil.class
│ │ │ ├── FileUploadUtil.class
│ │ │ ├── Html2Doc.class
│ │ │ ├── JOD4DocToPDF.class
│ │ │ ├── PdfToSwf.class
│ │ │ └── PropertyReaderUtil.class
│ │ ├── persistence
│ │ │ ├── CommentMapper.class
│ │ │ ├── CommentMapper.xml
│ │ │ ├── ExamMapper.class
│ │ │ ├── ExamMapper.xml
│ │ │ ├── ExamPaperMapper.class
│ │ │ ├── ExamPaperMapper.xml
│ │ │ ├── PracticeMapper.class
│ │ │ ├── PracticeMapper.xml
│ │ │ ├── QuestionMapper.class
│ │ │ ├── QuestionMapper.xml
│ │ │ ├── UserMapper.class
│ │ │ └── UserMapper.xml
│ │ ├── security
│ │ │ ├── UserDetailsServiceImpl.class
│ │ │ ├── UserInfo.class
│ │ │ ├── filter
│ │ │ │ └── AuthenticationFilter.class
│ │ │ └── handler
│ │ │ └── ExtrAuthenticationSuccessHandler.class
│ │ ├── service
│ │ │ ├── CommentService.class
│ │ │ ├── CommentServiceImpl.class
│ │ │ ├── ExamService.class
│ │ │ ├── ExamServiceImpl.class
│ │ │ ├── PracticeService.class
│ │ │ ├── PracticeServiceImpl.class
│ │ │ ├── QuestionService.class
│ │ │ ├── QuestionServiceImpl.class
│ │ │ ├── UserService.class
│ │ │ └── UserServiceImpl.class
│ │ └── util
│ │ ├── EhcacheTest.class
│ │ ├── MyInterceptor.class
│ │ ├── Page.class
│ │ ├── PagingUtil.class
│ │ ├── Population.class
│ │ ├── QuestionAdapter.class
│ │ ├── ReflectUtil.class
│ │ ├── Roulette.class
│ │ ├── StandardPasswordEncoderForSha1.class
│ │ ├── StreamGobbler.class
│ │ ├── UserInfoUtil.class
│ │ └── xml
│ │ └── Object2Xml.class
│ ├── ehcache.xml
│ ├── ehcache.xsd
│ └── log4j.properties
├── m2e-wtp
│ └── web-resources
│ └── META-INF
│ ├── MANIFEST.MF
│ └── maven
│ └── com.extr
│ └── czcExam
│ ├── pom.properties
│ └── pom.xml
├── maven-status
│ └── maven-compiler-plugin
│ └── compile
│ └── default-compile
│ ├── createdFiles.lst
│ └── inputFiles.lst
└── test-classes
└── com
└── extr
├── file
│ └── util
│ ├── EncodeTest.class
│ ├── FileUploadTest.class
│ ├── PSOTest1.class
│ ├── Pdf2SwfTest.class
│ └── RouletteTest.class
└── service
└── PracticeServiceTest.class
108 directories, 411 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论