# SSM案例 **Repository Path**: xyrit-java-project/ssh-demo ## Basic Information - **Project Name**: SSM案例 - **Description**: 整合SSM(Spring+SpringMVC+MyBatis)的案例 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-15 - **Last Updated**: 2021-10-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: SSM ## README # SSM案例 #### 介绍 整合SSM(Spring+SpringMVC+MyBatis)的案例,实现登录登出、增删改查等基本功能,项目采用maven管理。 #### 软件架构 软件架构说明 环境版本 Eclipse4.21.0 + JDK16 + JavaSE16 + spring4.0.2 + mybatis3.2.6 目录结构 ``` ├─logs ├─src │ ├─main │ │ ├─java #程序开发以及主程序入口 │ │ │ └─com │ │ │ ├─demo # 项目1 │ │ │ │ ├─commons # 公共类 │ │ │ │ ├─dao # model层 │ │ │ │ ├─entity # 实例 │ │ │ │ ├─mapper # 数据映射 │ │ │ │ ├─service # 服务层 │ │ │ │ │ └─impl # 服务具体实现 │ │ │ │ └─web # 控制层 │ │ │ │ └─controller │ │ │ ├─lsms # 项目2 │ │ │ ├─spoc # 项目3 │ │ │ └─util # 工具类 │ │ ├─resources # 配置文件 │ │ │ └─generator # 实例、mapper、dao 自动生成配置 │ │ └─webapp # Web访问 │ │ ├─static │ │ │ ├─css │ │ │ ├─fonts │ │ │ ├─img │ │ │ └─js │ │ └─WEB-INF │ │ ├─jsp # 模板视图 │ │ │ ├─common │ │ │ │ └─errorPage │ │ │ └─user │ │ └─model │ └─test # 测试程序 │ └─java │ └─org │ └─demo │ └─testmybatis └─target ├─classes │ ├─com │ │ ├─demo │ │ │ ├─commons │ │ │ ├─dao │ │ │ ├─entity │ │ │ ├─mapper │ │ │ ├─service │ │ │ │ └─impl │ │ │ └─web │ │ │ └─controller │ │ ├─lsms │ │ ├─spoc │ │ └─util │ └─generator ├─generated-sources │ └─annotations ├─generated-test-sources │ └─test-annotations ├─m2e-wtp │ └─web-resources │ └─META-INF │ └─maven │ └─com.ssm.demo │ └─ssm-demo ├─maven-status │ └─maven-compiler-plugin │ ├─compile │ │ └─default-compile │ └─testCompile │ └─default-testCompile ├─surefire-reports └─test-classes └─org └─demo └─testmybatis ``` #### 安装教程 1. pull或下载zip文件 2. Eclipse导入maven项目 3. 导入数据库文件 4. 修改resources目录下的配置文件 #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)