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
├── src │ │ │ └── com
│ ├── main │ │ │ └── example
│ │ ├── java │ │ │ └── freshonline
│ │ │ └── com │ │ │ ├── advice **global exception handler config**
│ │ │ └── example │ │ │ ├── config **Spring custom config**
│ │ │ └── freshonline │ │ │ ├── constants **some constants**
│ │ │ ├── advice │ │ │ ├── controller **handler http requests**
│ │ │ ├── constants │ │ │ ├── dao **read/write directly database**
│ │ │ ├── controller │ │ │ ├── dto **data transfer object**
│ │ │ ├── dao │ │ │ ├── enums **some enumerates**
│ │ │ ├── dto │ │ │ ├── exception **customized exception**
│ │ │ ├── enums │ │ │ ├── interceptor
│ │ │ ├── exception │ │ │ ├── listener
│ │ │ ├── interceptor │ │ │ ├── model **database entity class(POJO)**
│ │ │ ├── listener │ │ │ ├── schedule
│ │ │ ├── model │ │ │ ├── service **mediate between controller and dao**
│ │ │ ├── schedule │ │ │ └── utils **some common utils**
│ │ │ ├── service │ │ └── resources
│ │ │ └── utils │ │ ├── mapper **mybatis mapper config files**
│ │ └── resources │ │ ├── static
│ │ ├── mapper │ │ │ └── images **store static images**
│ │ ├── static │ │ └── templates
│ │ │ └── images │ └── test
│ │ └── templates │ └── java
│ └── test │ └── com
│ └── java │ └── example
│ └── com │ └── freshonline
│ └── example │ └── controller **unit tests for controllers**
│ └── freshonline
│ └── controller
└── target
├── classes
│ └── com
│ └── example
│ └── freshonline
├── generated-sources
│ └── annotations
├── generated-test-sources
│ └── test-annotations
└── test-classes
└── com
└── example
└── freshonline
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