SSM 项目从搭建爬坑到 CentOS 服务器部署 - 速查手册
提示:
(1)CSDN 博客左边有操作工具条上有文章目录
(2)SSM 指 Spring,Spring MVC,MyBatis
Maven 的 pom.xml 配置合集
提示: 如果想查看当前最新版本,可以拷贝 xml 注解中的链接
基础配置:
fastjson 1.2.54
spring-webmvc 5.1.4
spring-jdbc 5.1.4
mybatis 3.4.6
mybatis-spring 1.3.2
mysql-connector-java 8.0.13
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.54</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.4.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.1.4.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.13</version>
</dependency>
其他扩展:
javax.servlet-api 4.0.1
commons-email 1.5
commons-fileupload 1.4
druid 1.1.12
junit 4.11
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-email -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-email</artifactId>
<version>1.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
SSM 项目搭建
(1)按照博客详细操作(含查询实例):
(2)使用我的 Github 模板(含查询实例):
- 打开 IDEA 创建项目页面,如果有项目,点击 File > Close Project
- 点击 Check out from Version Control > Git
- 输入 URL:https://github.com/xpwi/SSMTemplate.git
- 输入 Directory(本地存放位置)
- 点击 Clone
- 右下角 Enable Auto-Import
- 删除版本控制 Settings > Version Control > 选中 > 点击 --
- 配置 Tomcat,参考:创建 Maven Web 项目 + Tomcat 及目录结构配置
CentOS 云服务器环境搭建
(1)CentOS 云服务器从购买到 JDK,Tomcat 及 MySQL 安装及环境配置
(2)CentOS 云服务器安装 MySQL 8.0 及使用(所有的坑我走了一遍)
CentOS 云服务器上部署 SSM 项目
(1)数据库复制(建议使用 Navicat 12 可以直接连接),如果是在本机的数据库需要连接服务器的数据库进行同样的搭建,转出 SQL,在服务器新建数据库,运行 SQL
(2)将 resources 中 jdbc.url 中的 localhost 改成服务器公网 ip
(3)将项目打包成 war 的形式,拷贝到 Tomcat 根目录/webapps 目录下
提示:
- war 不需要解压,Tomcat 在运行时会自动检测,自动解压。Tomcat 运行的时候部署 war 时不能删除 war 包,会同时删除。
- 如果不想要 war 包,可以先关闭 Tomcat,再拷贝进去,手动解压
- war 的名称可以修改,但是在访问的时候要用新改名称的作为路径
(4)访问路径(自动匹配 index.html 的方式):
http://公网ip:8080/war包解压后的目录名/