• 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
    
  • 相关阅读:
    Linux下升级gcc版本(9.1.0版本)
    Linux/CentOS系统同步网络时间的2种方法详解
    为什么使用promise
    总结js深拷贝和浅拷贝
    js闭包理解
    select框实现多选的功能
    动态添加element-ui组件
    总结鼠标移入移出事件
    echarts提示框太长,导致显示不全 ,撑大div框的问题
    vue项目中管理定时器
  • 原文地址:https://www.cnblogs.com/springbootplus/p/11334650.html
Copyright © 2020-2023  润新知