SpringBoot项目目录结构

本文详细介绍了SpringBoot结合Mybatis的项目基础结构,包括目录层级、关键组件位置及代码组织方式,适合初学者快速了解并搭建项目框架。

SpringBoot项目基础结构示例

  • JAP和Mybatis混合项目目录结构
catelog
├─.gitignore
├─pom.xml
├─README.md
└─src
    ├─main
    │  ├─java
    │  │  └─com
    │  │      └─springboot
    │  │          └─catelog
    │  │              ├─commons         # 公共目录
    │  │              │  ├─config       # 配置类
    │  │              │  ├─consts       # 常量类
    │  │              │  └─enmus        # 枚举类
    │  │              ├─controller      # 前端控制器层
    │  │              ├─domain          # 数据实体类
    │  │              ├─pojo
    │  │              │  ├─dao          # 数据接口访问层
    │  │              │  ├─dto          # 数据传输对象
    │  │              │  └─vo           # 视图包装对象
    │  │              ├─service         # 数据服务接口层
    │  │              │  └─impl         # 数据服务接口实现层
    │  │              ├─utils           # 工具类库
    │  │              └─CatelogApplication.java
    │  └─resources
    │      ├─mapper                     # Mybatis 映射文件
    │      └─application.properties     # 配置文件
    └─test
        └─java
            └─com
                └─springboot
                    └─catelog

代码层目录结构注意点

根目录:com.springboot.catelog

  • CatelogApplication.java:启动类,推荐放到代码根目录下,例如:com.springboot.catelog
  • domain:数据实体类
    1. JPA项目:com.springboot.catelog.domain
    2. Mybatis项目:com.springboot.catelog.entity
  • dao:数据接口访问层
    1. jpa项目: com.springboot.catelog.repository
    2. Mybatis项目: com.springboot.catelog.mapper
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

dadeity

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值