iOS死开发硬转JAVA后台 入门到XX(4)部署

《spring boot in action》这本书粗略的看了一遍,现阶段对我比较重要的是打包和部署,如果能把服务部署发布出去,对自己是一个阶段性的鼓励。所以本书其他的内容,如单测,actuator等,都不仔细阅读和实践了,先把整个流程走通~

打包和部署在《spring boot in action》书里介绍分以下几种


image.png

本次实践的部署方式是
JAR + Maven + 云服务器(公司内网)

打包

本地打包Jar

  • 配置pom

        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true
                
            
        
    

    jar
  • 运行 mvn clean package
image.png
  • 运行 Jar 包 java -jar package_name
image.png
  • pom配置时加了一句 fork=true

    参考:
    https://www.cnblogs.com/wchukai/p/5651172.html
    https://docs.spring.io/spring-boot/docs/current/maven-plugin/index.html
    https://www.kancloud.cn/cxr17618/springboot/428893

部署

云服务器配置

公司内申请了一个云服务器 还不知道怎么玩 准备学习一下

  • 申请页面
  • 配置代理

新建用户

http://examplecode.cn/2018/09/03/centos-create-user/?spm=a2c4e.10696291.0.0.794119a4vKd5om

学习
* wheel 群组的作用
* 新建用户的必要
* 平时操作尽量不使用root用户,如果需要root权限执行名,使用 sudo

// 切换用户
[root@VM_192_74_centos ~]# su - 用户名

安装 JDK

  • x86 和 x86-64 的不同
    x86 32位
    x86-64 64位
    参考: https://blog.csdn.net/u010758410/article/details/76320530

第一遍安装选错了 装了32位的 后来查了系统版本 确定了要装的版本
安装错了 需要卸载 费了功夫
https://blog.csdn.net/fenglongmiao/article/details/79221552

// 查看系统版本
[root@VM_192_74_centos ~]# cat /etc/issue
Tencent tlinux release 2.2 (Final)
Kernel \r on an \m

[root@VM_192_74_centos ~]# cat /etc/redhat-release 
CentOS Linux release 7.2 (Final)

// 查看文件信息
[root@VM_192_74_centos ~]# stat file

// 查看现存 JDK
[root@VM_192_74_centos ~]# rpm -qa|grep jdk

// 卸载 JDK
[root@VM_192_74_centos ~]# rpm -e --nodeps jdk-XXX.x86_64

安装tomcat

  • 下载安装包
    https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.19/bin/
  • 参考
    https://ken.io/note/centos7-tomcat-setup

安装maven

yum 安装,很简单

安装vsftpd

为了实现 开发机(Mac 和 服务器(centos)的文件互传

  • mac 安装 filezilla

  • centos 安装 vsftpd

  • centos 配置 ftp 服务器

  • mac 链接发武器,将 jar 包传到服务器

  • 参考
    https://blog.csdn.net/kxwinxp/article/details/78595044
    https://www.cnblogs.com/Sungeek/p/10148656.html

运行 JAR 包

  • 报错 Unsupported major.minor version 52.0

  • 分析
    google说是 JDK 版本低于构建的 JDK 版本。
    https://blog.csdn.net/superit401/article/details/72731381

服务器运行java -version,惊奇地发现变成JAVA7了,但是明明前一天安装并且验证了安装的是JAVA8.

  • 解决
    卸载低版本JDK,安装正确版本JDK,重新运行
    https://blog.csdn.net/fenglongmiao/article/details/79221552

再次运行

java -jar demo-0.0.1-SNAPSHOT.jar


image.png

部署成功了!!!!!

  • 预览图


    image.png

    image.png

参考

https://yq.aliyun.com/articles/654593
https://www.cnblogs.com/toutou/p/9675218.html

你可能感兴趣的:(iOS死开发硬转JAVA后台 入门到XX(4)部署)