spring-boot-plus project directory structure (VI)

spring-boot-plus project directory structure

Directory Structure

  • bin: Start / restart command scripts directory
  • logs: the deployment logs directory
  • assembly: maven package configuration file directory
  • java: source code directory
  • resources: Resources files directory
  • config: Configuration file directory project
  • mapper: mybatis xml mapping file directory
  • test: Test Directory
  • test / resources: code generation templates directory
├─bin
├─logs
│  └─back
├─main
│  ├─assembly
│  ├─java
│  │  └─io
│  │      └─geekidea
│  │          └─springbootplus
│  │              ├─common
│  │              │  ├─aop
│  │              │  ├─api
│  │              │  ├─constant
│  │              │  ├─constraints
│  │              │  ├─entity
│  │              │  ├─enums
│  │              │  ├─exception
│  │              │  ├─service
│  │              │  │  └─impl
│  │              │  └─web
│  │              │      ├─controller
│  │              │      ├─filter
│  │              │      ├─interceptor
│  │              │      ├─param
│  │              │      └─vo
│  │              ├─config
│  │              │  ├─converter
│  │              │  ├─json
│  │              │  │  ├─fastjson
│  │              │  │  └─jackson
│  │              │  │      ├─deserializer
│  │              │  │      └─serializer
│  │              │  └─mq
│  │              │      ├─kafka
│  │              │      └─rabbit
│  │              ├─example
│  │              │  ├─mq
│  │              │  │  ├─kafka
│  │              │  │  └─rabbit
│  │              │  └─redislock
│  │              ├─security
│  │              │  ├─config
│  │              │  ├─controller
│  │              │  ├─interceptor
│  │              │  ├─param
│  │              │  ├─service
│  │              │  │  └─impl
│  │              │  ├─util
│  │              │  └─vo
│  │              ├─system
│  │              │  ├─entity
│  │              │  ├─mapper
│  │              │  ├─service
│  │              │  │  └─impl
│  │              │  └─web
│  │              │      ├─controller
│  │              │      ├─param
│  │              │      └─vo
│  │              └─util
│  └─resources
│      ├─config
│      └─mapper
│          └─system
└─test
    ├─java
    │  └─io
    │      └─geekidea
    │          └─springbootplus
    │              └─test
    └─resources
        └─templates

Guess you like

Origin www.cnblogs.com/springbootplus/p/11334650.html