# module **Repository Path**: Dick_YangDi/module ## Basic Information - **Project Name**: module - **Description**: 练习maven多模块构建项目。 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # module #### 项目介绍   这是一个用来学习SSM(Spring+SpringMVC+Mybatis)框架练手的项目,并没有实现具体功能,主要用来练习maven多模块搭建,及一些工具框架的基本使用。项目的组织架构与以前做过的一个项目相同,随着后期的相关知识学习讲补充相应功能。 #### 后端技术 技术 | 名称 | 官网 ----|------|---- Spring Framework | 容器 | [http://projects.spring.io/spring-framework/](http://projects.spring.io/spring-framework/) SpringMVC | MVC框架 | [http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc](http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc) MyBatis | ORM框架 | [http://www.mybatis.org/mybatis-3/zh/index.html](http://www.mybatis.org/mybatis-3/zh/index.html) MyBatis Generator | 代码生成 | [http://www.mybatis.org/generator/index.html](http://www.mybatis.org/generator/index.html) Druid | 数据库连接池 | [https://github.com/alibaba/druid](https://github.com/alibaba/druid) Redis | 分布式缓存数据库 | [https://redis.io/](https://redis.io/) Logback | 日志组件 | [https://logback.qos.ch/](https://logback.qos.ch/) Maven | 项目构建管理 | [http://maven.apache.org/](http://maven.apache.org/) ### 组织结构 ``` module ├── module-all -- maven父级模块 ├── module-common -- SSM框架公共模块 ├── module-manager -- 管理员模块 | ├──modlue-manager-pojo | ├──module-manager-dao | ├──module-manager-service | ├──module-manager-aop | └──module-manager-web └── module-module-protal --门户模块 ├──modlue-manager-pojo ├──module-manager-dao ├──module-manager-service ├──module-manager-aop └──module-manager-web ```