美文网首页Spring cloud
spring boot 部署

spring boot 部署

作者: sT丶 | 来源:发表于2017-09-29 09:12 被阅读37次
  1. 首先需要打包,在项目的根目录(就是放pom.xml的那个目录)执行
mvn clean package 

即可执行打包,打包完成可在根目录的 target目录下找到相关jar包,
也可以执行

mvn clean package -D maven.test.skip=true 

跳过项目的测试,生成jar包

  1. 生成完jar包,如何执行
    在Jar包所在目录 。执行
java -jar xxxx.jar

即可完成部署

  1. 在Linxu下的部署
    基本如下,但是我们可以使用 nohup 命令来后台运行
nohup java -jar target/spring-boot-1.0.0.jar &
#使用 jobs 查看任务。
jobs
#使用 fg %n 关闭。
fg 1

相关文章

网友评论

    本文标题:spring boot 部署

    本文链接:https://www.haomeiwen.com/subject/ulibextx.html