{"id":15134366,"url":"https://github.com/googtech/springboot-beginner","last_synced_at":"2025-10-23T09:31:35.666Z","repository":{"id":37324324,"uuid":"194082620","full_name":"GoogTech/springboot-beginner","owner":"GoogTech","description":":beginner: :memo: 这可能是流程最清晰、代码最干净、注释最详细的 SpringBoot 入门项目咯，对于初学 SpringBoot 的同学非常具有参考与学习价值哟 ~","archived":false,"fork":false,"pushed_at":"2023-02-22T08:13:48.000Z","size":1266,"stargazers_count":80,"open_issues_count":4,"forks_count":24,"subscribers_count":1,"default_branch":"refactor-190823","last_synced_at":"2025-01-30T17:38:41.675Z","etag":null,"topics":["ajax","easyui","intellij-idea","jquery","maven","mybatis","mysql","spring-boot"],"latest_commit_sha":null,"homepage":"https://yubuntu0109.github.io/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GoogTech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-27T11:26:15.000Z","updated_at":"2025-01-10T06:38:41.000Z","dependencies_parsed_at":"2023-01-21T10:17:48.324Z","dependency_job_id":null,"html_url":"https://github.com/GoogTech/springboot-beginner","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogTech%2Fspringboot-beginner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogTech%2Fspringboot-beginner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogTech%2Fspringboot-beginner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogTech%2Fspringboot-beginner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GoogTech","download_url":"https://codeload.github.com/GoogTech/springboot-beginner/tar.gz/refs/heads/refactor-190823","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237807490,"owners_count":19369597,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ajax","easyui","intellij-idea","jquery","maven","mybatis","mysql","spring-boot"],"created_at":"2024-09-26T05:04:47.268Z","updated_at":"2025-10-23T09:31:30.067Z","avatar_url":"https://github.com/GoogTech.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## :memo: a simple project for Spring Boot ~\n\n### 项目概述  (:speech_balloon: pause update)\n:+1:*一个简单的,基于Spring Boot的好友备忘录小项目,通过本项目可以学习`Spring Boot`与`MyBatis`的整合及CURD操作的基本思路,同时也可以帮助你学习`Thylemeaf`模板引擎使用哟 ! 该项目的代码注释详细,逻辑结构清晰,非常具有参考,学习价值哟 ! 可以说非常适合初学Sping Boot的同学啦(っ•̀ω•́)っ✎⁾⁾~*\n\n\n### 分支介绍\n- :arrows_clockwise: *`master` : Spring Boot整合MyBatis*\n- :arrows_clockwise: *`v2.0-redis` : Spring Boot整合MyBatis并集成Redis*\n\n:heart:*为了让更多同学快速地体验该项目,已通过`mvn package`将`master`分支打包,并将其作为`v1.0`上传到了`release`中~*\n\n\n### 项目截图\n- *项目主页面*\n\n![](https://raw.githubusercontent.com/YUbuntu0109/SpringBoot-CURD-Memo/master/demonstration_picture/SpringBoot-CURD-Memo_MainView.PNG)\n\n- *好友信息管理页面*\n\n![](https://raw.githubusercontent.com/YUbuntu0109/SpringBoot-CURD-Memo/master/demonstration_picture/SpringBoot-CURD-Memo_FriendListView.PNG)\n\n![](https://raw.githubusercontent.com/YUbuntu0109/SpringBoot-CURD-Memo/master/demonstration_picture/SpringBoot-CURD-Memo_FriendListView2.PNG)\n\n\n### 项目结构\n```\n│  .gitattributes\n│  LICENSE\n│  README.md\n│\n├─database file\n│      memo.sql\n│\n├─demonstration_picture\n│      SpringBoot-CURD-Memo_FriendListView.PNG\n│      SpringBoot-CURD-Memo_FriendListView2.PNG\n│      SpringBoot-CURD-Memo_MainView.PNG\n│\n└─memo\n    │  .gitignore\n    │  mvnw\n    │  mvnw.cmd\n    │  pom.xml\n    │\n    │\n    └─src\n        └─main\n            ├─java\n            │  └─pers\n            │      └─haungyuhui\n            │          └─memo\n            │              │  MemoApplication.java\n            │              │\n            │              ├─bean\n            │              │      Friend.java\n            │              │\n            │              ├─controller\n            │              │      StudentController.java\n            │              │\n            │              ├─dao\n            │              │      FriendMapper.java\n            │              │      FriendMapper.xml\n            │              │\n            │              ├─service\n            │              │  │  FriendService.java\n            │              │  │\n            │              │  └─impl\n            │              │          FriendServiceImpl.java\n            │              │\n            │              └─util\n            │                      UploadFile.java\n            │\n            └─resources\n                │  application.properties\n                │\n                ├─static\n                │  ├─easyui\n                │  │  │  jquery.easyui.min.js\n                │  │  │  jquery.min.js\n                │  │  │\n                │  │  ├─css\n                │  │  │      default.css\n                │  │  │      demo.css\n                │  │  │\n                │  │  ├─js\n                │  │  │      outlook2.js\n                │  │  │      validateExtends.js\n                │  │  │\n                │  │  └─themes\n                │  │      │(略..)\n                │  │        \n                │  │      \n                │  │      \n                │  └─image\n                │          default_portrait.png\n                │\n                └─templates\n                        friendList.html\n                        intro.html\n                        main.html\n```\n\n#### 项目文件说明-`Spring boot启动类`\n```\nMemoApplication.java\n```\n\n#### 项目文件说明-`数据库文件`\n```\nmemo.sql\n```\n\n#### 项目文件说明-`EasyUI 前端框架`\n```\neasyui/\n```\n\n#### 项目文件说明-`默认头像`\n```\ndefault_portrait.png\n```\n\n\n\n*:books:更多有趣项目及详细学习笔记请前往我的个人博客哟（づ￣3￣）づ╭❤～ : https://yubuntu0109.github.io/* \n \n:coffee: Look forward to your contribution !\n\n:man_student: If you need any help, please contact me ~ QQ : 3083968068\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoogtech%2Fspringboot-beginner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoogtech%2Fspringboot-beginner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoogtech%2Fspringboot-beginner/lists"}