1.准备工作
1.阿里云服务器已安装phpMyAdmin(可看上一篇博文)
2.阿里云服务器已安装jdk环境
3.一个可运行,没有错误的SpringBoot项目
2.运行环境
Eclipse打包
阿里云服务器部署
2.打包SpringBoot项目
- 修改配置文件pom.xml
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
- 右键项目,选择Run As=》Maven clean
- 右键项目,选择Run As=》Maven install
- 此时,你会在项目目录下的target目录下发现一个jar文件
- 可以使用 java -jar 打包项目名.jar测试
3.开放阿里云安全组
文中使用的是轻量级服务器
4.使用phpMyAdmin新建项目所需数据库
测试项目,比较简单,只有一个表,三个字段,数据库名为testdemo,表名为customer,
表明数据为3行
1 李白 20
2 韩信 15
3 赵云 25
5.上传jar包到阿里云服务器(WinSCP)
把打包好的jar包上传到服务器,并修改名字为testdemo1.jar(可以不修改)
6.在阿里云服务器上启动项目
1.进入上传的jar包所在目录
2.java -jar testdemo1.jar
启动SpringBoot项目
7.测试
如有错误及不足,请多多指教