美文网首页
SpringCloud微服务开发中后台启动公共服务

SpringCloud微服务开发中后台启动公共服务

作者: yxuiang | 来源:发表于2019-11-09 10:55 被阅读0次
文件会存放到 .idea/sh/startCore.sh
# 启动项目前 mvn clean install
# 查看进程 <Linux> ps -aux|grep java; lsof -i:port/|\ <win> ps |grep java
# cd /path
# git pull
# nohup mvn -f eureka spring-boot:run > /dev/null 2>&1 &
# nohup mvn -f config spring-boot:run > /dev/null 2>&1 &
nohup java -jar /path/eureka.jar > /dev/null 2>&1 &
nohup java -jar /path/config.jar > /dev/null 2>&1 &
  • idea terminal 配置 gitbash
  • idea 中打开 terminal
  • 后台启动微服务公共模块sh .idea/sh/startCore.sh

相关文章

网友评论

      本文标题:SpringCloud微服务开发中后台启动公共服务

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