当前位置:网站首页>1-后台项目搭建
1-后台项目搭建
2022-07-29 06:52:00 【张 邵】
项目搭建

- Zs-common :
- 是整个工程的配置核心,包括所有集成三方框架的配置定义,比如redis、kafka等。
- 除此之外还包括项目每个模块及整个项目的常量定义;
- zs-model :项目中用到的Dto、Pojo、Mapper、Enums定义工程;
- zs-utils : 工程公用工具类项目,包含加密/解密、Date、JSON等工具类;
- Zs-apis : 整个项目微服务暴露的接口的定义项目,按每个模块进行子包拆分;
zs-blog
<groupId>com.zs</groupId>
<artifactId>zs-blog</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>zs-blog-apis</module>
<module>zs-blog-common</module>
<module>zs-blog-model</module>
<module>zs-blog-utils</module>
<module>zs-blog-admin</module>
</modules>
<!-- 继承Spring boot工程 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.0</version>
</parent>
<properties>
</properties>
<dependencies>
</dependencies>
<dependencyManagement>
<dependencies>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
</plugins>
</pluginManagement>
<plugins>
</plugins>
</build>
<profiles>
</profiles>
边栏推荐
- 【Redis】Redis开发规范与注意事项
- When NPM is installed, it is stuck. There are five solutions
- dba
- It's enough for MySQL to have this article (disgusting and crazy typing 37k words, just for Bo Jun's praise!!!)
- Docker最新超详细教程——Docker创建运行MySQL并挂载
- JS break and continue and return keywords
- Operator3-设计一个operator
- MySQL----多表查询
- [C language brush leetcode] 67. binary sum (E)
- 上采样之反卷积操作
猜你喜欢

MySQL 有这一篇就够(呕心狂敲37k字,只为博君一点赞!!!)

Full process flow of CMOS chip manufacturing

同步/异步、阻塞/非阻塞 与 IO

LeetCode 879. 盈利计划

Vmware16 create virtual machine: win11 cannot be installed

MySQL - multi table query

2022-07-28: what is the output of the following go language code? A:AA; B:AB; C:BA; D:BB。 package main import ( “fmt“ ) func main() { f

实现改变一段文字的部分颜色效果

WPF simple login page completion case

Student achievement ranking system based on C language design
随机推荐
Personal blog system (with source code)
彻底搞懂kubernetes调度框架与插件
WPF 界面布局必知基础
My personal website doesn't allow access to wechat, so I did this
个人博客系统(附源码)
太空射击第17课: Game Over (結束)
以太网接口介绍
聊天机器人有何用处?有何类型?看完这些就明白了!
Synchronous / asynchronous, blocking / non blocking and IO
ERROR 1045 (28000) Access denied for user ‘root‘@‘localhost‘解决方法
gin 中间件
Vite3.0都发布了,你还能卷得动吗(新特性一览)
Nodejs安装教程
Unity sends a post request to the golang server for parsing and returning
WPF nested layout case
解决CSDN因版权不明而无法发布博客的问题
pytorch的技巧记录
LeetCode 879. 盈利计划
VMware16安装虚拟机遇到的问题
数组的子集不能累加出的最小正数