Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
6
651project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
651project
651project
Commits
c995785c
Commit
c995785c
authored
3 years ago
by
Zekun Fan
Browse files
Options
Downloads
Patches
Plain Diff
add directory tree
parent
59c198d4
No related branches found
Branches containing commit
No related tags found
1 merge request
!1
Master
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+32
-49
32 additions, 49 deletions
README.md
with
32 additions
and
49 deletions
README.md
+
32
−
49
View file @
c995785c
# 651project
.
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── freshonline
│ │ │ ├── advice
│ │ │ ├── constants
│ │ │ ├── controller
│ │ │ ├── dao
│ │ │ ├── dto
│ │ │ ├── enums
│ │ │ ├── exception
│ │ │ ├── interceptor
│ │ │ ├── listener
│ │ │ ├── model
│ │ │ ├── schedule
│ │ │ ├── service
│ │ │ └── utils
│ │ └── resources
│ │ ├── mapper
│ │ ├── static
│ │ │ └── images
│ │ └── templates
│ └── test
│ └── java
│ └── com
│ └── example
│ └── freshonline
│ └── controller
└── target
├── classes
│ └── com
│ └── example
│ └── freshonline
├── generated-sources
│ └── annotations
├── generated-test-sources
│ └── test-annotations
└── test-classes
└── com
└── example
└── freshonline
.
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── freshonline
│ │ │ ├── advice
**global exception handler config**
│ │ │ ├── config
**Spring custom config**
│ │ │ ├── constants
**some constants**
│ │ │ ├── controller
**handler http requests**
│ │ │ ├── dao
**read/write directly database**
│ │ │ ├── dto
**data transfer object**
│ │ │ ├── enums
**some enumerates**
│ │ │ ├── exception
**customized exception**
│ │ │ ├── interceptor
│ │ │ ├── listener
│ │ │ ├── model
**database entity class(POJO)**
│ │ │ ├── schedule
│ │ │ ├── service
**mediate between controller and dao**
│ │ │ └── utils
**some common utils**
│ │ └── resources
│ │ ├── mapper
**mybatis mapper config files**
│ │ ├── static
│ │ │ └── images
**store static images**
│ │ └── templates
│ └── test
│ └── java
│ └── com
│ └── example
│ └── freshonline
│ └── controller
**unit tests for controllers**
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment