欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot项目打包部署阿里云服务器

程序员文章站 2022-03-26 21:39:06
...

1.准备工作

1.阿里云服务器已安装phpMyAdmin(可看上一篇博文)
2.阿里云服务器已安装jdk环境
3.一个可运行,没有错误的SpringBoot项目

2.运行环境

Eclipse打包
阿里云服务器部署

2.打包SpringBoot项目

  1. 修改配置文件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>
  1. 右键项目,选择Run As=》Maven clean
  2. 右键项目,选择Run As=》Maven install
  3. 此时,你会在项目目录下的target目录下发现一个jar文件
    SpringBoot项目打包部署阿里云服务器
  4. 可以使用 java -jar 打包项目名.jar测试

3.开放阿里云安全组

文中使用的是轻量级服务器
SpringBoot项目打包部署阿里云服务器

4.使用phpMyAdmin新建项目所需数据库

测试项目,比较简单,只有一个表,三个字段,数据库名为testdemo,表名为customer,
表明数据为3行
1 李白 20
2 韩信 15
3 赵云 25
SpringBoot项目打包部署阿里云服务器
SpringBoot项目打包部署阿里云服务器

5.上传jar包到阿里云服务器(WinSCP)

把打包好的jar包上传到服务器,并修改名字为testdemo1.jar(可以不修改)
SpringBoot项目打包部署阿里云服务器

6.在阿里云服务器上启动项目

1.进入上传的jar包所在目录
2.java -jar testdemo1.jar启动SpringBoot项目
SpringBoot项目打包部署阿里云服务器

7.测试

SpringBoot项目打包部署阿里云服务器

如有错误及不足,请多多指教