봄 부팅 플러스 프로젝트 디렉토리 구조 (VI)

봄 부팅 플러스 프로젝트 디렉토리 구조

디렉토리 구조

  • 빈 : 시작 / 재시작 명령 스크립트 디렉토리
  • 로그 : 배포 디렉토리를 기록
  • 조립 : 받는다는 패키지 구성 파일 디렉토리
  • 자바 : 소스 코드 디렉토리
  • 자원 : 자원 파일 디렉토리
  • 구성 : 구성 파일 디렉토리 프로젝트
  • 매퍼 : XML 매핑 파일 디렉토리를 MyBatis로
  • 테스트 : 테스트 디렉토리
  • 시험 / 자료 : 코드 생성 템플릿 디렉토리
├─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

추천

출처www.cnblogs.com/springbootplus/p/11334650.html