Skip to content

Commit 1877dce

Browse files
authored
🌙 add detailed project description ~
1 parent 47b2f9f commit 1877dce

File tree

1 file changed

+123
-2
lines changed

1 file changed

+123
-2
lines changed

README.md

Lines changed: 123 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,123 @@
1-
# SpringBoot-CURD
2-
a simple curd demo ~
1+
## :memo: a simple project for Spring Boot ~
2+
3+
### 项目概述 (:speech_balloon: pause update)
4+
:+1:*一个简单的,基于Spring Boot的好友备忘录小项目,通过本项目可以学习`Spring Boot``MyBatis`的整合及CURD操作的基本思路,同时也可以帮助你学习`Thylemeaf`模板引擎使用哟 ! 该项目的代码注释详细,逻辑结构清晰,非常具有参考,学习价值哟 ! 可以说非常适合初学Sping Boot的同学啦(っ•̀ω•́)っ✎⁾⁾~*
5+
6+
7+
### 项目截图
8+
- *项目主页面*
9+
10+
![](https://raw.githubusercontent.com/YUbuntu0109/SpringBoot-CURD-Memo/master/demonstration_picture/SpringBoot-CURD-Memo_MainView.PNG)
11+
12+
- *好友信息管理页面*
13+
14+
![](https://raw.githubusercontent.com/YUbuntu0109/SpringBoot-CURD-Memo/master/demonstration_picture/SpringBoot-CURD-Memo_FriendListView.PNG)
15+
16+
![](https://raw.githubusercontent.com/YUbuntu0109/SpringBoot-CURD-Memo/master/demonstration_picture/SpringBoot-CURD-Memo_FriendListView2.PNG)
17+
18+
19+
### 项目结构
20+
```
21+
│ .gitattributes
22+
│ LICENSE
23+
│ README.md
24+
25+
├─database file
26+
│ memo.sql
27+
28+
├─demonstration_picture
29+
│ SpringBoot-CURD-Memo_FriendListView.PNG
30+
│ SpringBoot-CURD-Memo_FriendListView2.PNG
31+
│ SpringBoot-CURD-Memo_MainView.PNG
32+
33+
└─memo
34+
│ .gitignore
35+
│ mvnw
36+
│ mvnw.cmd
37+
│ pom.xml
38+
39+
40+
└─src
41+
└─main
42+
├─java
43+
│ └─pers
44+
│ └─haungyuhui
45+
│ └─memo
46+
│ │ MemoApplication.java
47+
│ │
48+
│ ├─bean
49+
│ │ Friend.java
50+
│ │
51+
│ ├─controller
52+
│ │ StudentController.java
53+
│ │
54+
│ ├─dao
55+
│ │ FriendMapper.java
56+
│ │ FriendMapper.xml
57+
│ │
58+
│ ├─service
59+
│ │ │ FriendService.java
60+
│ │ │
61+
│ │ └─impl
62+
│ │ FriendServiceImpl.java
63+
│ │
64+
│ └─util
65+
│ UploadFile.java
66+
67+
└─resources
68+
│ application.properties
69+
70+
├─static
71+
│ ├─easyui
72+
│ │ │ jquery.easyui.min.js
73+
│ │ │ jquery.min.js
74+
│ │ │
75+
│ │ ├─css
76+
│ │ │ default.css
77+
│ │ │ demo.css
78+
│ │ │
79+
│ │ ├─js
80+
│ │ │ outlook2.js
81+
│ │ │ validateExtends.js
82+
│ │ │
83+
│ │ └─themes
84+
│ │ │(略..)
85+
│ │
86+
│ │
87+
│ │
88+
│ └─image
89+
│ default_portrait.png
90+
91+
└─templates
92+
friendList.html
93+
intro.html
94+
main.html
95+
```
96+
97+
#### 项目文件说明-`Spring boot启动类`
98+
```
99+
MemoApplication.java
100+
```
101+
102+
#### 项目文件说明-`数据库文件`
103+
```
104+
memo.sql
105+
```
106+
107+
#### 项目文件说明-`EasyUI 前端框架`
108+
```
109+
easyui/
110+
```
111+
112+
#### 项目文件说明-`默认头像`
113+
```
114+
default_portrait.png
115+
```
116+
117+
118+
119+
*:books:更多有趣项目及详细学习笔记请前往我的个人博客哟(づ ̄3 ̄)づ╭❤~ : https://yubuntu0109.github.io/*
120+
121+
:coffee: Look forward to your contribution !
122+
123+
:man_student: If you need any help, please contact me ~ QQ : 3083968068

0 commit comments

Comments
 (0)