javawagon中怎么将文件打包到不同服务器,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
创新互联坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都网站制作、网站设计、外贸网站建设、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的莫力达网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
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] ---------------------------------------------------
看完上述内容,你们掌握javawagon中怎么将文件打包到不同服务器的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!
新闻标题:javawagon中怎么将文件打包到不同服务器
本文URL:https://www.cdcxhl.com/article34/pdsdpe.html
成都网站建设公司_创新互联,为您提供网页设计公司、网站改版、建站公司、微信小程序、面包屑导航、网站策划
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联