├── src
└── main
│ ├── resources
│ ├── static
│ │ ├── css
│ │ │ └── 1.css
│ │ └── images
│ │ │ ├── assd.png
│ │ │ ├── btn.gif
│ │ │ ├── btn01.gif
│ │ │ ├── btn02.gif
│ │ │ ├── btn03.gif
│ │ │ ├── btn04.gif
│ │ │ ├── btn05.gif
│ │ │ ├── btn06.gif
│ │ │ ├── btn07.gif
│ │ │ ├── btn10.gif
│ │ │ ├── btn11.gif
│ │ │ ├── icon.png
│ │ │ ├── page.gif
│ │ │ ├── scut.png
│ │ │ ├── btn07g.gif
│ │ │ ├── graybg.jpg
│ │ │ ├── login_1.png
│ │ │ ├── page_be.gif
│ │ │ ├── login_icon.png
│ │ │ ├── logout_1.png
│ │ │ ├── background_1.png
│ │ │ ├── option_wrong.png
│ │ │ ├── add_emoticons.png
│ │ │ ├── backgroung_scut.png
│ │ │ ├── option_correct.png
│ │ │ ├── option_default.png
│ │ │ ├── talk_recordtext.png
│ │ │ ├── talk_send_btn.png
│ │ │ ├── three_choice2.png
│ │ │ └── talk_recordtextme.png
│ ├── templates
│ │ ├── excel
│ │ │ ├── sub_template.xlsx
│ │ │ ├── judge_template.xlsx
│ │ │ ├── choice_template.xlsx
│ │ │ ├── student_template.xlsx
│ │ │ └── teacher_template.xlsx
│ │ ├── error.html
│ │ ├── _
│ │ │ ├── _logout.html
│ │ │ ├── _adminpage.html
│ │ │ ├── _studentpage.html
│ │ │ ├── _teacherpage.html
│ │ │ ├── _index.html
│ │ │ ├── _student_exercise_sub.html
│ │ │ ├── _student_exercise_truefalse.html
│ │ │ ├── _login.html
│ │ │ └── _student_exercise.html
│ │ ├── notlogin.html
│ │ ├── notpermission.html
│ │ ├── session.html
│ │ ├── wrongpassword.html
│ │ ├── logout.html
│ │ ├── change_info.html
│ │ ├── student
│ │ │ ├── student_exercise.html
│ │ │ ├── student_chart.html
│ │ │ ├── studentpage.html
│ │ │ ├── student_evaluating_question.html
│ │ │ ├── student_exercise_sub.html
│ │ │ └── student_test.html
│ │ ├── admin
│ │ │ └── adminpage.html
│ │ ├── teacher
│ │ │ ├── student_chart.html
│ │ │ ├── teacherpage.html
│ │ │ ├── student_grade_list.html
│ │ │ ├── other_config.html
│ │ │ └── teacher_test_list.html
│ │ └── login.html
│ ├── application.properties
│ └── mapper
│ │ ├── ClassDaoMapper.xml
│ │ ├── PaperDaoMapper.xml
│ │ ├── AdminDaoMapper.xml
│ │ ├── ChartDaoMapper.xml
│ │ ├── EvaluateDaoMapper.xml
│ │ ├── SubjectDaoMapper.xml
│ │ ├── JudgeDaoMapper.xml
│ │ ├── ChoiceDaoMapper.xml
│ │ ├── QuestionDaoMapper.xml
│ │ ├── TeacherDaoMapper.xml
│ │ ├── StudentDaoMapper.xml
│ │ └── ExamDaoMapper.xml
│ └── java
│ └── examination
│ ├── dao
│ ├── ClassDao.java
│ ├── PaperDao.java
│ ├── ChartDao.java
│ ├── AdminDao.java
│ ├── EvaluateDao.java
│ ├── JudgeDao.java
│ ├── ChoiceDao.java
│ ├── SubjectDao.java
│ ├── StudentDao.java
│ ├── TeacherDao.java
│ ├── ExamDao.java
│ └── QuestionDao.java
│ ├── ExaminationApplication.java
│ ├── entity
│ ├── Class.java
│ ├── Question
│ │ ├── Subdba.java
│ │ ├── Judgedba.java
│ │ ├── Evadba.java
│ │ └── Choicedba.java
│ ├── Status.java
│ ├── Page.java
│ ├── User.java
│ ├── Record.java
│ ├── Admin.java
│ ├── SubjectQuestion.java
│ ├── JudgeQuestion.java
│ ├── Teacher.java
│ ├── Student.java
│ ├── ChoiceQuestion.java
│ └── Paper.java
│ ├── config
│ ├── MyWebAppConfigurer.java
│ └── KaptchaConfig.java
│ ├── interceptor
│ ├── LoginInterceptor.java
│ ├── AdminInterceptor.java
│ ├── TeacherInterceptor.java
│ ├── StudentInterceptor.java
│ └── CaptchaInterceptor.java
│ ├── service
│ ├── ExerciseService.java
│ ├── EvaluatingService.java
│ ├── LoginService.java
│ ├── PaperService.java
│ └── ChartService.java
│ └── controller
│ ├── CaptchaController.java
│ └── LoginController.java
├── .gitignore
├── .idea
├── vcs.xml
├── encodings.xml
├── modules.xml
├── libraries
│ ├── Maven__ognl_ognl_3_0_8.xml
│ ├── Maven__junit_junit_4_12.xml
│ ├── Maven__org_ow2_asm_asm_5_0_3.xml
│ ├── Maven__org_yaml_snakeyaml_1_17.xml
│ ├── Maven__org_mybatis_mybatis_3_4_5.xml
│ ├── Maven__com_jhlabs_filters_2_0_235.xml
│ ├── Maven__org_objenesis_objenesis_2_1.xml
│ ├── Maven__org_slf4j_slf4j_api_1_7_25.xml
│ ├── Maven__com_github_axet_kaptcha_0_0_9.xml
│ ├── Maven__com_fasterxml_classmate_1_3_4.xml
│ ├── Maven__net_minidev_json_smart_2_2_1.xml
│ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml
│ ├── Maven__org_assertj_assertj_core_2_6_0.xml
│ ├── Maven__org_codehaus_groovy_groovy_2_4_12.xml
│ ├── Maven__org_slf4j_jul_to_slf4j_1_7_25.xml
│ ├── Maven__org_skyscreamer_jsonassert_1_4_0.xml
│ ├── Maven__net_minidev_accessors_smart_1_1.xml
│ ├── Maven__com_jayway_jsonpath_json_path_2_2_0.xml
│ ├── Maven__org_mockito_mockito_core_1_10_19.xml
│ ├── Maven__org_mybatis_mybatis_spring_1_3_1.xml
│ ├── Maven__org_slf4j_jcl_over_slf4j_1_7_25.xml
│ ├── Maven__org_hamcrest_hamcrest_library_1_3.xml
│ ├── Maven__org_javassist_javassist_3_21_0_GA.xml
│ ├── Maven__ch_qos_logback_logback_core_1_1_11.xml
│ ├── Maven__org_apache_tomcat_tomcat_jdbc_8_5_23.xml
│ ├── Maven__org_apache_tomcat_tomcat_juli_8_5_23.xml
│ ├── Maven__org_slf4j_log4j_over_slf4j_1_7_25.xml
│ ├── Maven__mysql_mysql_connector_java_5_1_44.xml
│ ├── Maven__ch_qos_logback_logback_classic_1_1_11.xml
│ ├── Maven__org_thymeleaf_thymeleaf_2_1_5_RELEASE.xml
│ ├── Maven__org_unbescape_unbescape_1_1_0_RELEASE.xml
│ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_8_10.xml
│ ├── Maven__org_jboss_logging_jboss_logging_3_3_1_Final.xml
│ ├── Maven__javax_validation_validation_api_1_1_0_Final.xml
│ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_23.xml
│ ├── Maven__org_springframework_spring_tx_4_3_12_RELEASE.xml
│ ├── Maven__org_springframework_spring_aop_4_3_12_RELEASE.xml
│ ├── Maven__org_springframework_spring_web_4_3_12_RELEASE.xml
│ ├── Maven__org_springframework_spring_core_4_3_12_RELEASE.xml
│ ├── Maven__org_springframework_spring_jdbc_4_3_12_RELEASE.xml
│ ├── Maven__org_springframework_spring_test_4_3_12_RELEASE.xml
│ ├── Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_23.xml
│ ├── Maven__org_springframework_spring_beans_4_3_12_RELEASE.xml
│ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_8_10.xml
│ ├── Maven__org_hibernate_hibernate_validator_5_3_5_Final.xml
│ ├── Maven__org_thymeleaf_thymeleaf_spring4_2_1_5_RELEASE.xml
│ ├── Maven__org_apache_tomcat_tomcat_annotations_api_8_5_23.xml
│ ├── Maven__org_springframework_boot_spring_boot_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_spring_webmvc_4_3_12_RELEASE.xml
│ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_8_0.xml
│ ├── Maven__org_springframework_spring_context_4_3_12_RELEASE.xml
│ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_23.xml
│ ├── Maven__org_springframework_spring_expression_4_3_12_RELEASE.xml
│ ├── Maven__nz_net_ultraq_thymeleaf_thymeleaf_layout_dialect_1_4_0.xml
│ ├── Maven__org_springframework_boot_spring_boot_test_1_5_8_RELEASE.xml
│ ├── Maven__org_mybatis_spring_boot_mybatis_spring_boot_starter_1_3_1.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_1_5_8_RELEASE.xml
│ ├── Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml
│ ├── Maven__org_springframework_boot_spring_boot_devtools_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_web_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_jdbc_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_test_1_5_8_RELEASE.xml
│ ├── Maven__org_mybatis_spring_boot_mybatis_spring_boot_autoconfigure_1_3_1.xml
│ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_logging_1_5_8_RELEASE.xml
│ ├── Maven__org_springframework_boot_spring_boot_starter_thymeleaf_1_5_8_RELEASE.xml
│ └── Maven__org_springframework_boot_spring_boot_test_autoconfigure_1_5_8_RELEASE.xml
├── misc.xml
└── compiler.xml
├── LICENSE
└── pom.xml
/src/main/resources/static/css/1.css:
--------------------------------------------------------------------------------
1 | p {
2 | color: red;
3 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # 忽略生成的target
2 | target
3 |
4 | # 忽略idea的自动文件修改
5 | .idea/workspace.xml
6 | */vcs.xml
7 | .idea
8 | .idea/
9 | .idea*
10 | .idea/*
--------------------------------------------------------------------------------
/src/main/resources/static/images/assd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/assd.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn01.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn01.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn02.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn02.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn03.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn03.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn04.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn04.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn05.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn05.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn06.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn06.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn07.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn07.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn10.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn11.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/icon.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/page.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/page.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/scut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/scut.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/btn07g.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/btn07g.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/graybg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/graybg.jpg
--------------------------------------------------------------------------------
/src/main/resources/static/images/login_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/login_1.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/page_be.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/page_be.gif
--------------------------------------------------------------------------------
/src/main/resources/static/images/login_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/login_icon.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/logout_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/logout_1.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/background_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/background_1.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/option_wrong.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/option_wrong.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/add_emoticons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/add_emoticons.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/backgroung_scut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/backgroung_scut.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/option_correct.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/option_correct.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/option_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/option_default.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/talk_recordtext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/talk_recordtext.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/talk_send_btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/talk_send_btn.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/three_choice2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/three_choice2.png
--------------------------------------------------------------------------------
/src/main/resources/templates/excel/sub_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/templates/excel/sub_template.xlsx
--------------------------------------------------------------------------------
/src/main/resources/static/images/talk_recordtextme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/static/images/talk_recordtextme.png
--------------------------------------------------------------------------------
/src/main/resources/templates/excel/judge_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/templates/excel/judge_template.xlsx
--------------------------------------------------------------------------------
/src/main/resources/templates/excel/choice_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/templates/excel/choice_template.xlsx
--------------------------------------------------------------------------------
/src/main/resources/templates/excel/student_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/templates/excel/student_template.xlsx
--------------------------------------------------------------------------------
/src/main/resources/templates/excel/teacher_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IACJ/SpringBoot_ExaminationSystem/HEAD/src/main/resources/templates/excel/teacher_template.xlsx
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
你已经登录成功
13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/templates/_/_studentpage.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 |你已经登录成功
13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/templates/_/_teacherpage.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 |你已经登录成功
13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/templates/_/_index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |默认名字root,密码root
10 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/java/examination/dao/AdminDao.java: -------------------------------------------------------------------------------- 1 | package examination.dao; 2 | 3 | import examination.entity.Admin; 4 | import org.apache.ibatis.annotations.Mapper; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | @Mapper 8 | public interface AdminDao { 9 | Admin findByLogin(@Param("account") String account, @Param("password") String password); 10 | 11 | void updateInfo( @Param("id")long id, @Param("name") String name,@Param("pw") String pw); 12 | } 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__ognl_ognl_3_0_8.xml: -------------------------------------------------------------------------------- 1 |