# framework-ssm-web
**Repository Path**: gmarshal/framework-ssm-web
## Basic Information
- **Project Name**: framework-ssm-web
- **Description**: No description available
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 4
- **Forks**: 0
- **Created**: 2018-06-14
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# FRAME-SSM-WEB
目前为 v3.0
如需v1.0版本,请前往分支v1.0
如需v2.0版本,请前往分支v2.0
## 技术栈
* Spring 4.3.10.RELEASE
* SpringMVC 4.3.10.RELEASE
* Mybatis 3.3.1
* Shiro 1.3.2
* Druid 1.1.5
* Quartz 2.2.3
* Ehcache
* Log4j 1.2.17
# 更新日志
## 2018-12-24
* Jquery Table导出Excel添加边框,文本统一居中显示
## 2018-06-15
* 支持分布式环境下的id生成策略
* 支持mysql、oracle切换
切换方式,见 **config.properties**
#### mysql
```
jdbc.type=mysql
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/database_db?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&failOverReadOnly=false
jdbc.username=root
jdbc.password=root
```
#### oracle
```
jdbc.type=oracle
jdbc.driver=oracle.jdbc.driver.OracleDriver
jdbc.url=jdbc:oracle:thin:@localhost:1521:orcl
jdbc.username=USERNAME
jdbc.password=PASSWORD
```