spring-boot-plus項目目錄結構
目錄結構
- bin:啓動/重啓命令腳本目錄
- logs:部署後記錄日誌目錄
- assembly:maven打包配置文件目錄
- java:源代碼目錄
- resources:資源文件目錄
- config:項目配置文件目錄
- mapper:mybatis xml映射文件目錄
- test:測試目錄
- test/resources:代碼生成模板目錄
├─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