Java代码结构
Posted 第三眼的思绪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java代码结构相关的知识,希望对你有一定的参考价值。
业务数据服务结构
├── xx-dao
│ ├── src/main/java
│ │ └── com.salewell.xxx
│ │ ├── entity
│ │ ├── model
│ │ └── dao
│ └── src/main/resources
│ └── mapper
├── xx-facade
│ └── src/main/java
│ └── com.salewell.xxx
│ ├── common
│ ├── dto
│ ├── exception
│ ├── service
│ ├── type[可选]
│ └── util[可选]
├── xx-service
│ └── src/main/java
│ └── com.salewell.xxx
│ ├── prop[可选]
│ ├── service.impl
│ └── util[可选]
└── xx
├── src/main/java
│ └── com.salewell.xxx
│ ├── XxxApplication.java
│ ├── config[可选]
│ └── controller[可选]
├── src/main/resources
│ └── 内置配置[可选]
└── config
└── 外置配置[可选]
接入层服务结构
├── xx-facade
│ └── src/main/java
│ └── com.salewell.xxx
│ ├── common[可选]
│ ├── form[可选]
│ ├── vo[可选]
│ ├── exception[可选]
│ ├── service
│ ├── type[可选]
│ └── util[可选]
├── xx-service
│ └── src/main/java
│ └── com.salewell.xxx
│ ├── prop[可选]
│ ├── service.impl
│ └── util[可选]
└── xx
├── src/main/java
│ └── com.salewell.xxx
│ ├── XxxApplication.java
│ ├── form[可选]
│ ├── vo[可选]
│ ├── config[可选]
│ └── controller[可选]
├── src/main/resources
│ └── 内置配置[可选]
└── config
└── 外置配置[可选]
以上是关于Java代码结构的主要内容,如果未能解决你的问题,请参考以下文章