{"id":31959261,"url":"https://github.com/mageekchiu/quiz","last_synced_at":"2026-04-30T12:34:03.377Z","repository":{"id":156466067,"uuid":"107107392","full_name":"MageekChiu/quiz","owner":"MageekChiu","description":"一个小小的测试平台","archived":false,"fork":false,"pushed_at":"2018-01-03T03:16:30.000Z","size":3940,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-30T12:33:55.492Z","etag":null,"topics":["java","spring","spring-boot","spring-security"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MageekChiu.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-10-16T09:35:43.000Z","updated_at":"2024-07-10T07:57:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"931653e8-763d-4d12-bf97-0796c87682fd","html_url":"https://github.com/MageekChiu/quiz","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MageekChiu/quiz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MageekChiu%2Fquiz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MageekChiu%2Fquiz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MageekChiu%2Fquiz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MageekChiu%2Fquiz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MageekChiu","download_url":"https://codeload.github.com/MageekChiu/quiz/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MageekChiu%2Fquiz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32465009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","spring","spring-boot","spring-security"],"created_at":"2025-10-14T15:26:14.587Z","updated_at":"2026-04-30T12:34:03.373Z","avatar_url":"https://github.com/MageekChiu.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Little Quiz Platform\n\n## 项目定位\n\n一个小小的测试平台，此平台目的有二\n- 作为 Spring 体系技术栈学习过程的练手项目，结合测试，Git版本管理争取做一次完整、规范的开发流程尝试\n- 构建一个答题系统，主要搜集一些笔试面试题目，方便以后复习；同时也准备搜集一些智力测试题，可以测测智商；最后搜集一些脑筋急转弯，测测大脑的灵活性...将来可以更丰富\n\n## 技术选型\n\n- 主体代码选择Spring 体系中 Spring MVC 、Spring Boot、Spring Security、Spring Data。\n- 数据库方面想过使用已经比较熟悉的MySQL，但是我想走出舒适区，那还是选择我不熟悉的MongoDB,尝尝鲜,\n使用MongoDB作为主体数据库；另外使用redis作为session存储介质，这样利于分布式\n（ :-D，虽然没有几个用户，但是我的目的是锻炼技术 ），同时也作为缓存的承载\n\n## 项目架构\n\n### --功能说明\n\n#### ----**前台**\n\n未登录用户在首页，首页轮播的是系统随机调的几道题\n\n登录用户可以按标签、类型选择一套试卷，试卷由试题库生成，试题库由爬虫生成或者手工录入。答题完成后可以查看正确答案以及得分情况\n\n#### ----**后台**\n\n后台主要有用户管理功能，试题管理功能，标签管理功能，试卷管理功能\n\n### --主体代码\n\n- config 配置类\n- controller 控制器类\n- entity 数据库实体类\n- i18n 国际化需要的类\n- repository 仓库类\n- service 服务类\n- util 工具类\n- vo 表示层需要的类比如一些表单对象\n\n## 项目流程\n\n- 项目需求分析：搞清楚这个项目的定位、目的是什么，要达到什么效果\n- 功能测试 ：进行技术选型，要完成项目需要哪些功能，进行测试，以备后面开发所需\n- 项目架构：整个项目前后台业务划分，代码应该如何规划，数据实体对象、url、权限等等的设计\n- 具体业务实现：进行编码，要符合代码规范\n- 单元测试：可以采取每完成一个模块就进行单元测试或者最后集中进行单元测试，我为了进度并没有做到马上就写单元测试，而是完成了几个模块后再写(实际上每写成一部分代码就写单元测试才是好习惯)\n- 集成测试：所有模块都完成后进行集成测试\n- 用户测试：找几个人用用，看看能不能提出一些意见或者找到bug\n- 重构优化：加入缓存，代码复用，改善代码整洁度等等","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmageekchiu%2Fquiz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmageekchiu%2Fquiz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmageekchiu%2Fquiz/lists"}