目录结构

目录结构

  • bin:启动/重启命令脚本目录
  • logs:部署后记录日志目录
  • assembly:maven打包配置文件目录
  • java:源代码目录
  • resources:资源文件目录
  • config:项目配置文件目录
  • mapper:mybatis xml映射文件目录
  • test:测试目录
  • test/resources:代码生成模板目录
├── deploy
├── docs
│   ├── bin
│   │   └── install
│   ├── config
│   ├── db
│   └── img
├── logs
└── src
    ├── bin
    ├── logs
    │   └── back
    ├── main
    │   ├── assembly
    │   ├── java
    │   │   └── io
    │   │       └── geekidea
    │   │           └── springbootplus
    │   │               ├── aop
    │   │               ├── common
    │   │               │   ├── api
    │   │               │   ├── constraints
    │   │               │   ├── controller
    │   │               │   ├── entity
    │   │               │   ├── enums
    │   │               │   ├── exception
    │   │               │   ├── param
    │   │               │   ├── service
    │   │               │   │   └── impl
    │   │               │   ├── vo
    │   │               │   └── xss
    │   │               ├── config
    │   │               │   ├── converter
    │   │               │   └── json
    │   │               │       ├── fastjson
    │   │               │       └── jackson
    │   │               │           ├── deserializer
    │   │               │           └── serializer
    │   │               ├── constant
    │   │               ├── core
    │   │               │   ├── aop
    │   │               │   ├── config
    │   │               │   └── properties
    │   │               ├── enums
    │   │               ├── example
    │   │               ├── filter
    │   │               ├── foobar
    │   │               │   ├── controller
    │   │               │   ├── entity
    │   │               │   ├── mapper
    │   │               │   ├── param
    │   │               │   ├── service
    │   │               │   │   └── impl
    │   │               │   └── vo
    │   │               ├── generator
    │   │               │   └── config
    │   │               ├── interceptor
    │   │               ├── resource
    │   │               │   ├── controller
    │   │               │   └── interceptor
    │   │               ├── scheduled
    │   │               ├── shiro
    │   │               │   ├── cache
    │   │               │   │   └── impl
    │   │               │   ├── config
    │   │               │   ├── controller
    │   │               │   ├── convert
    │   │               │   ├── exception
    │   │               │   ├── jwt
    │   │               │   ├── param
    │   │               │   ├── service
    │   │               │   │   └── impl
    │   │               │   ├── util
    │   │               │   └── vo
    │   │               ├── system
    │   │               │   ├── controller
    │   │               │   ├── convert
    │   │               │   ├── entity
    │   │               │   ├── exception
    │   │               │   ├── mapper
    │   │               │   ├── param
    │   │               │   │   └── sysrole
    │   │               │   ├── service
    │   │               │   │   └── impl
    │   │               │   └── vo
    │   │               └── util
    │   └── resources
    │       ├── config
    │       ├── mapper
    │       │   ├── foobar
    │       │   └── system
    │       ├── static
    │       └── templates
    └── test
        ├── java
        │   └── io
        │       └── geekidea
        │           └── springbootplus
        │               └── test
        └── resources
            └── templates

项目包和类文档:http://geekidea.io/spring-boot-plus-apidocs/