zoukankan      html  css  js  c++  java
  • spring-boot-plus项目目录结构(六)

    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
    
  • 相关阅读:
    IOS cocos2d笔记1
    [转] 函数调用的栈分配
    iOS 静态类库项目的建立与使用
    Brew 编译mod错误Error: L6265E: Non-RWPI Section libspace.o(.bss) cannot be assigned to PI Exec region ER_ZI
    [LeetCode]7、Reverse Integer
    [LeetCode]1、Two Sum
    java学习路线和知识图谱
    《Java编程思想》第十一章 持有对象
    《Java编程思想》第十章 内部类
    《Java编程思想》第十三章 字符串
  • 原文地址:https://www.cnblogs.com/springbootplus/p/11334650.html
Copyright © 2011-2022 走看看