-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojectTree
138 lines (137 loc) · 7.05 KB
/
projectTree
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
D:.
├── ProjectTree // 项目结构介绍
├── README.md
├── Wiki.md
├── bash.exe.stackdump
├── community.iml
├── mvnw
├── mvnw.cmd
├── pom.xml // Maveny依赖
├── src
│ ├── main
│ │ ├── java
│ │ │ └── life
│ │ │ ├── CommunityApplication.java
│ │ │ └── majiang
│ │ │ └── community // 控制器
│ │ │ ├── controller
│ │ │ │ ├── AuthorizeController.java
│ │ │ │ ├── HelloController.java // 测试
│ │ │ │ ├── IndexController.java
│ │ │ │ └── PublishController.java
│ │ │ ├── dto // 传输层
│ │ │ │ ├── AccessTokenDTO.java
│ │ │ │ ├── GithubUser.java
│ │ │ │ └── QuestionDTO.java
│ │ │ ├── mapper // 映射层
│ │ │ │ ├── QuestionMapper.java
│ │ │ │ └── UserMapper.java
│ │ │ ├── model // 数据库模型
│ │ │ │ ├── Question.java
│ │ │ │ └── User.java
│ │ │ ├── provider // 连接层
│ │ │ │ └── GithubProvider.java
│ │ │ └── service // 服务层 中间层
│ │ │ └── QuestionService
│ │ └── resources // 资源
│ │ ├── application.properties // 启动入口
│ │ ├── db // 数据库
│ │ │ └── migration //版本控制
│ │ │ ├── V1__Create_User_table.sql
│ │ │ ├── V2__Add_bio_To_User_table.sql
│ │ │ ├── V3__Create_question_table.sql
│ │ │ └── V4__Add_avatar_url_To_UserTable.sql
│ │ ├── static
│ │ │ ├── css // 样式
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ └── community.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js // js脚本
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ │ └── templates // Web页面
│ │ ├── hello.html // 测试
│ │ ├── index.html
│ │ └── publish.html
│ └── test
│ └── java
│ └── life
│ └── majiang
│ └── community
│ └── CommunityApplicationTests.java
└── target
├── classes
│ ├── application.properties
│ ├── db
│ │ └── migration
│ │ ├── V1__Create_User_table.sql
│ │ ├── V2__Add_bio_To_User_table.sql
│ │ ├── V3__Create_question_table.sql
│ │ └── V4__Add_avatar_url_To_UserTable.sql
│ ├── life
│ │ ├── CommunityApplication.class
│ │ └── majiang
│ │ └── community
│ │ ├── controller
│ │ │ ├── AuthorizeController.class
│ │ │ └── PublishController.class
│ │ ├── dto
│ │ │ ├── AccessTokenDTO.class
│ │ │ ├── GithubUser.class
│ │ │ └── QuestionDTO.class
│ │ ├── mapper
│ │ │ ├── QuestionMapper.class
│ │ │ └── UserMapper.class
│ │ ├── model
│ │ │ ├── Question.class
│ │ │ └── User.class
│ │ └── provider
│ │ └── GithubProvider.class
│ ├── static
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap-theme.min.css.map
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap.min.css.map
│ │ │ └── community.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
│ └── templates
│ ├── hello.html
│ ├── index.html
│ └── publish.html
├── generated-sources
│ └── annotations
├── generated-test-sources
│ └── test-annotations
└── test-classes
└── life
└── majiang
└── community
└── CommunityApplicationTests.class
50 directories, 84 files