欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

java wagon如何打包文件到不同服务器

时间:2020-10-01 15:47:37|栏目:JAVA代码|点击:

java需要编译的,打包后文件要上传到服务器。推荐二个办法,

第一种,用jenkins,可以使用centos7 jenkins 发布vue ssr,编译类的语言都可能过jenkins来发布,.net没试过。

第二种,用wagon包来实现

1,修改pom.xml

<build> 
 <plugins> 
  <plugin> 
   <groupId>org.codehaus.mojo</groupId> 
   <artifactId>wagon-maven-plugin</artifactId> 
   <version>1.0</version> 
   <configuration> 
    <serverId>${profiles.active}</serverId> 
    <fromFile>target/test.jar</fromFile> 
    <url>scp://root@${profiles.url}/var/www/java/target</url> 
   </configuration> 
  </plugin> 
 </plugins> 
 <extensions> 
  <extension> 
   <groupId>org.apache.maven.wagon</groupId> 
   <artifactId>wagon-ssh</artifactId> 
   <version>2.8</version> 
  </extension> 
 </extensions> 
</build> 
 <profiles> 
 <profile> 
  <!-- staging --> 
  <id>nlj-staging</id> 
  <properties> 
   <profiles.active>nlj-staging</profiles.active> 
   <profiles.resource>staging</profiles.resource> 
   <profiles.url>10.0.0.12</profiles.url>    <profiles.updatePolicy>always</profiles.updatePolicy   </properties> 
  <activation> 
   <activeByDefault>true</activeByDefault> 
  </activation> 
 </profile> 
 <profile> 
  <id>nlj-bms-prod</id> 
  <properties> 
   <profiles.active>nlj-bms-prod</profiles.active>    <profiles.resource>production</profiles.resource> 
   <profiles.url>47.111.11.11</profiles.url>    <profiles.updatePolicy>always</profiles.updatePolicy>
  </properties> 
 </profile> 
</profiles> 

配置完,重新加载maven包。

2,打包,并上传

# mvn clean package -Pnlj-staging -Dmaven.test.skip=true 
# mvn wagon:upload-single -Pnlj-staging 
。。。。。。。。。。。。。。省略。。。。。。。。。。。。。。 
[INFO] --- wagon-maven-plugin:1.0:upload-single (default-cli) @ test --- 
Password for root@10.0.0.12: ******* 
[INFO] Uploading: /Users/zhangying/Documents/www/target/test.jar scp://10.0.0.12/var/www/java/target/test.jar 
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD SUCCESS 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 40.392 s 
[INFO] Finished at: 2019-03-29T18:48:07+08:00 
[INFO] Final Memory: 14M/176M 
[INFO] ------------------------------------------------------------------------ 

上一篇:浅析JavaWeb项目架构之Redis分布式日志队列

栏    目:JAVA代码

下一篇:SpringBoot登录验证码实现过程详解

本文标题:java wagon如何打包文件到不同服务器

本文地址:http://www.codeinn.net/misctech/5792.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有