Skip to content
Snippets Groups Projects
Commit c995785c authored by Zekun Fan's avatar Zekun Fan
Browse files

add directory tree

parent 59c198d4
No related branches found
No related tags found
1 merge request!1Master
# 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**
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment